/* =========================================================
   ACCOUNT ITEM - DESKTOP
========================================================= */

.others-options > li.skymovo-account-item {
    position: relative !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;

    margin: 0 0 0 8px !important;
    padding: 0 !important;

    list-style: none !important;
    overflow: visible !important;
}


/* Account wrapper */

.skymovo-account-wrapper {
    position: relative !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 42px !important;
    height: 42px !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: visible !important;
}


/* =========================================================
   ACCOUNT ICON
========================================================= */

.skymovo-account-trigger {
    position: relative !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 42px !important;
    height: 42px !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;

    color: #111 !important;

    line-height: 1 !important;
    font-size: 0 !important;

    cursor: pointer !important;

    box-shadow: none !important;
    outline: none !important;
}


/* SVG */

.skymovo-account-icon {
    display: block !important;

    width: 22px !important;
    height: 22px !important;

    margin: 0 !important;
    padding: 0 !important;

    fill: none !important;

    stroke: currentColor !important;
    stroke-width: 1.8 !important;

    stroke-linecap: round !important;
    stroke-linejoin: round !important;

    opacity: 1 !important;
    visibility: visible !important;
}


/* =========================================================
   DESKTOP DROPDOWN
========================================================= */

.skymovo-account-dropdown {
    position: absolute !important;

    top: calc(100% - 2px) !important;
    right: 0 !important;

    display: flex !important;
    flex-direction: column !important;

    min-width: 110px !important;

    padding: 5px 0 !important;
    margin: 0 !important;

    background: #fff !important;

    border: 1px solid #ddd !important;
    border-radius: 4px !important;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    transform: translateY(-4px) !important;

    z-index: 999999 !important;

    transition:
        opacity .15s ease,
        visibility .15s ease,
        transform .15s ease !important;
}


.skymovo-account-wrapper.is-open
.skymovo-account-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    transform: translateY(0) !important;
}


/* Dropdown links */

.skymovo-account-dropdown-link {
    display: block !important;

    width: 100% !important;

    padding: 7px 12px !important;
    margin: 0 !important;

    color: #222 !important;

    font-size: 13px !important;
    line-height: 1.3 !important;

    text-decoration: none !important;
    text-align: left !important;

    white-space: nowrap !important;
}

.skymovo-account-dropdown-link:hover {
    background: #f5f5f5 !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .others-options > li.skymovo-account-item {
        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        width: 40px !important;
        min-width: 40px !important;
        height: 40px !important;

        margin-left: 6px !important;
    }

    .skymovo-account-wrapper {
        width: 40px !important;
        height: 40px !important;
    }

    .skymovo-account-trigger {
        width: 40px !important;
        height: 40px !important;
    }

    .skymovo-account-icon {
        width: 21px !important;
        height: 21px !important;
    }
}

@media (max-width: 991px) {
    .navbar .others-options {
        top: auto !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    /*
     * Account item sits beside the hamburger.
     */
    .others-options > li.skymovo-account-item {

        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        width: 36px !important;
        min-width: 36px !important;
        height: 36px !important;

        margin: 0 8px 0 0 !important;
        padding: 0 !important;
    }


    .skymovo-account-wrapper {

        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        width: 36px !important;
        height: 36px !important;
    }


    .skymovo-account-trigger {

        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        width: 36px !important;
        height: 36px !important;

        padding: 0 !important;
        margin: 0 !important;
    }


    .skymovo-account-icon {

        width: 20px !important;
        height: 20px !important;
    }


    /*
     * Dropdown on mobile.
     */
    .skymovo-account-dropdown {

        top: calc(100% + 2px) !important;

        right: -2px !important;

        min-width: 100px !important;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .others-options > li.skymovo-account-item {

        width: 34px !important;
        min-width: 34px !important;
        height: 34px !important;

        margin-right: 7px !important;
    }

    .skymovo-account-wrapper {

        width: 34px !important;
        height: 34px !important;
    }

    .skymovo-account-trigger {

        width: 34px !important;
        height: 34px !important;
    }

    .skymovo-account-icon {

        width: 19px !important;
        height: 19px !important;
    }
}


