a:hover,a:active,a:focus {
    color: rgb(48 136 213/.8)
}

a.help {
    font-size: 12px;
    vertical-align: super
}

.checkbox {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
    padding-right: 13px
}

.checkbox>input {
    display: none
}

.checkbox>span {
    display: flex;
    align-items: center
}

.checkbox>span:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    padding-left: 17px;
    margin-right: 5px;
    background-image: none;
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: 2px 2px;
    transition: all .3s linear;
    border: 1px solid #cfd3d5
}

.checkbox>input:checked~span:before {
    border-color: #61bd4f;
    background-image: url(/i/check-blue.svg)
}

.option {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    cursor: pointer;
    padding-right: 13px
}

.option>input {
    display: none
}

.option>span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    margin-right: 5px;
    transition: all .3s linear;
    border: 1px solid #cfd3d5
}

.option>input:checked~span {
    border-color: #61bd4f;
    color: #338bd9
}

.option:hover>span {
    color: #338bd9
}

.radio {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
    padding-right: 13px
}

.radio>input {
    display: none
}

.radio>span {
    display: flex;
    align-items: center
}

.radio>span:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-right: 5px;
    background-image: none;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    transition: all .3s linear;
    border: 1px solid #cfd3d5
}

.radio>input:checked~span:before {
    border-color: #61bd4f;
    background-image: url(/i/radio-blue.svg)
}

.password-view {
    position: relative;
    width: 100%
}

.password-view>i {
    position: absolute;
    right: 0;
    top: 0;
    width: 45px;
    height: 100%;
    background-image: url(/i/eye.svg);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer
}

.password-view>i:hover {
    opacity: .8
}

.password-view.active>i {
    background-image: url(/i/eye-no.svg)
}

.filter {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    justify-content: space-between;
    height: 100%;
    user-select: none;
    position: relative
}

.filter input {
    display: none
}

.filter span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: absolute;
    left: 0;
    right: 20px
}

.filter icon,.filter i {
    position: absolute;
    right: 0;
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-left: 10px;
    background-image: none;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: all .3s linear;
    background-image: url(/i/sort.svg)
}

.filter[data-order=desc] input:checked~icon,.filter[data-order=desc] input:checked~i {
    background-image: url(/i/sort-desc.svg)
}

.filter[data-order=asc] input:checked~icon,.filter[data-order=asc] input:checked~i {
    background-image: url(/i/sort-asc.svg)
}

.filter span:hover {
    color: #7fb6e7
}

.scrollbar::-webkit-scrollbar-track,.dialog::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgb(0 0 0/20%);
    background-color: #fff;
    border-radius: 50px
}

.scrollbar::-webkit-scrollbar,.dialog::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: #f9a956;
    border-radius: 50px
}

.scrollbar::-webkit-scrollbar-thumb,.dialog::-webkit-scrollbar-thumb {
    background-color: #f9a956;
    background-image: -webkit-gradient(linear,0 0,0 100%,color-stop(.5,rgba(255,255,255,.2)),color-stop(.1,transparent),to(transparent));
    border-radius: 50px
}

.buttons-kit>*:not(:last-child) {
    margin-right: 10px
}

[data-contents]:empty {
    height: 400px;
    display: flex;
    width: 100%;
    background-image: url(/i/empty.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80px;
    background-color: #f7f7f7
}

[data-contents]:empty:before {
    content: attr(data-empty);
    justify-content: center;
    width: 100%;
    display: flex;
    padding-top: 15px;
    text-align: center
}

.switch {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    width: auto;
    height: 19px;
    justify-content: space-between;
    user-select: none
}

.switch input {
    display: none
}

.switch icon,.switch i {
    border-radius: 12px;
    width: 50px;
    height: 19px;
    transition-duration: .3s;
    cursor: pointer;
    border: none;
    background: rgba(0,0,0,.34);
    z-index: 0;
    position: relative
}

.switch input:checked~icon,.switch input:checked~i {
    background: rgba(51,139,217,.98)
}

.switch input:disabled~icon,.switch input:disabled~i {
    background: rgb(234 234 234/34%)
}

.switch input:checked:disabled~icon,.switch input:checked:disabled~i {
    background: rgb(33 150 243/25%)
}

.switch input:disabled~icon:after,.switch input:disabled~i:after {
    display: none
}

.switch icon:after,.switch i:after {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    height: 27px;
    width: 27px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 0 2px rgb(0 0 0/12%),0 2px 2px rgb(0 0 0/24%);
    transition-duration: .3s;
    z-index: 1
}

.switch input:checked~icon:after,.switch input:checked~i:after {
    left: 24px
}

.switch span {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    margin-left: 25px
}

.switch span[data-state] {
    display: none
}

.switch input:checked~span[data-state=on] {
    display: flex
}

.switch input:not(:checked)~span[data-state=off] {
    display: flex
}

menu {
    position: absolute;
    right: 0;
    background-color: #e9faff;
    height: 79px;
    display: flex;
    align-items: center;
    z-index: -1;
    opacity: 0;
    transition: .3s opacity linear;
    min-width: 240px;
    justify-content: flex-end
}

menu.left {
    right: auto;
    left: 0
}

[data-menu="2"] menu {
    height: 100%;
    min-width: auto
}

menu>[data-if=""] {
    display: none!important
}

menu>* {
    font-size: 0px!important;
    display: flex!important;
    align-items: center!important;
    justify-content: left!important;
    width: 45px!important;
    height: 100%!important;
    cursor: pointer;
    background-repeat: no-repeat!important;
    background-position: center!important;
    background-size: auto 32px!important;
    padding: 0!important
}

menu>[data-type=favorite] {
    background-image: url(/i/star.svg)
}

menu>[data-type=favorite][data-value="1"] {
    background-image: url(/i/star_active.svg)
}

menu>[data-type=favorite][data-value="0"]:hover {
    background-image: url(/i/star_hover.svg)
}

menu>[data-type=analytics] {
    background-image: url(/i/progress.svg)
}

menu>[data-type=analytics]:hover {
    background-image: url(/i/progress_hover.svg)
}

menu>[data-type=copy] {
    background-image: url(/i/book.svg)
}

menu>[data-type=sms_logger] {
    background-image: url(/i/tools_14.svg)
}

menu>[data-type=copy]:hover {
    background-image: url(/i/book_hover.svg)
}

menu>[data-type=dns] {
    background-image: url(/i/dns.svg)
}

menu>[data-type=dns]:hover {
    background-image: url(/i/dns_hover.svg)
}

menu>[data-type=balance] {
    background-image: url(/i/dollar.svg)
}

menu>[data-type=balance]:hover {
    background-image: url(/i/dollar_hover.svg)
}

menu>[data-type=share] {
    background-image: url(/i/share.svg)
}

menu>[data-type=share]:hover {
    background-image: url(/i/share_hover.svg)
}

menu>[data-type=open] {
    background-image: url(/i/screen.svg)
}

menu>[data-type=open]:hover {
    background-image: url(/i/screen_hover.svg)
}

menu>[data-type=delete] {
    background-image: url(/i/delete.svg)
}

menu>[data-type=delete]:hover {
    background-image: url(/i/delete_hover.svg)
}

menu>[data-type=edit] {
    background-image: url(/i/pencil.svg)
}

menu>[data-type=edit]:hover {
    background-image: url(/i/pencil_hover.svg)
}

menu>[data-type=switch][data-status="1"] {
    background-image: url(https://cdn.grabify.org/icons/switch_active.svg)
}

menu>[data-type=switch][data-status="0"] {
    background-image: url(https://cdn.grabify.org/icons/switch_disabled.svg)
}

menu>[data-type=switch][data-status="1"]:after {
    content: attr(data-active)
}

menu>[data-type=switch][data-status="0"]:after {
    content: attr(data-disabled)
}

menu>[data-type=switch]:hover {
    background-color: #36a9cb38
}

[data-menu] [data-point].opened {
    background: #e9faff!important
}

[data-menu] [data-point].opened menu {
    opacity: 1;
    z-index: 1
}

[data-menu] [data-dots] {
    display: inline-block;
    width: 40px;
    height: 100%;
    cursor: pointer;
    background-image: url(/i/dots.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain
}

@media (max-width: 1023px) {
    menu {
        right:40px;
        width: 200px;
        height: auto;
        flex-wrap: wrap;
        top: 20px;
        background-color: #fff;
        border-radius: 4px
    }

    [data-menu="2"] menu {
        height: auto
    }

    menu>* {
        font-size: 16px!important;
        width: 100%!important;
        background-position: 10px center!important;
        padding: 10px 10px 10px 40px!important;
        background-size: 18px!important;
        border-bottom: 1px solid #f4f4f4!important
    }
}

@media (max-width: 768px) {
    [data-menu] [data-dots] {
        position:absolute;
        top: 5px;
        right: 0;
        height: 40px
    }

    menu>* {
        display: flex!important;
        align-items: center!important;
        justify-content: left!important;
        cursor: pointer;
        background-repeat: no-repeat!important;
        height: 100%!important;
        top: 5px!important
    }
}

#qr {
    margin: 25px auto;
    display: flex
}

.sharebox {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 250px;
    height: 90px;
    margin: auto
}

.tooltip-wrap {
    position: relative;
    width: 12px;
    height: 12px;
    background: url(/i/tooltip.svg) no-repeat;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    cursor: pointer;
    margin-left: 5px
}

.tooltip-wrap.info-icon {
    width: 20px;
    padding-left: 20px;
    height: 20px;
    background: url(/i/info.svg);
    background-size: 18px;
    background-repeat: no-repeat;
    margin-left: 10px
}

.tooltip-drop {
    position: absolute;
    top: 16px;
    left: -250px;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    min-width: 250px;
    padding: 12px;
    color: #2c4158;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    box-shadow: 6px 8px 0 0 #e8ecee;
    background-color: #fff;
    border: 1px solid #d9dbe1;
    z-index: 15;
    opacity: 0;
    visibility: hidden
}

.tooltip-drop a {
    color: #338bd9
}

.tooltip-wrap:hover .tooltip-drop {
    opacity: 1;
    visibility: visible
}

.navy-pages {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    min-height: 60px
}

.navy-pages [data-contain] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 60px
}

.navy-pages [data-contain]>* {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    color: #828282;
    font-size: 12px;
    border: 1px solid #cfd3d5;
    border-radius: 3px;
    cursor: pointer;
    transition: all .3s linear;
    user-select: none
}

.navy-pages [data-contain]>*:not(:last-child) {
    margin-right: 10px
}

.navy-pages [data-contain]>*:hover {
    border: 1px solid #338bd9
}

.navy-pages [data-contain]>[data-current="1"] {
    color: #338bd9;
    border: 1px solid #338bd9
}

input,select,textarea {
    width: 100%;
    background-color: #fff;
    font-size: 14px;
    font-family: Roboto,Verdana;
    padding: 0 20px 1px;
    border-radius: 3px;
    border: 1px solid #cfd3d5;
    transition: all .3s linear
}

input,select {
    height: 40px
}

input[type=file] {
    padding: 8px 10px
}

textarea {
    height: 120px;
    resize: none;
    padding-top: 10px;
    margin-top: 3px;
    border: 2px solid #cfd3d5;
    background-color: #2c4158;
    color: #f9b453;
    border-radius: 5px
}

input::-webkit-input-placeholder,textarea::-webkit-input-placeholder {
    color: #c4c3c3
}

input::-moz-placeholder,textarea::-moz-placeholder {
    color: #c4c3c3
}

input:-ms-input-placeholder,input::-ms-input-placeholder,textarea:-ms-input-placeholder,textarea::-ms-input-placeholder {
    color: #c4c3c3
}

input::placeholder,textarea::placeholder {
    color: #c4c3c3
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #fff inset
}

::-webkit-input-placeholder {
    color: rgba(79,93,109,.73)
}

:-moz-placeholder,::-moz-placeholder {
    color: rgba(79,93,109,.73)
}

:-ms-input-placeholder {
    color: rgba(79,93,109,.73)
}

input:focus,textarea:focus {
    border-color: #b9b5b5
}

button,.button {
    width: 100%;
    height: 40px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 3px;
    font-size: 16px;
    font-family: Roboto,Verdana;
    background: 0 0;
    color: #fff;
    cursor: pointer;
    transition: all .3s linear;
    background: #338bd9;
    padding: 0 14px
}

button.green,.button.green {
    background: #4caf50
}

button.cancel,.button.cancel {
    background: #f9b254
}

button.grey,.button.grey {
    background: #808a96
}

button.center,.button.center {
    margin: 0 auto
}

button.resend {
    white-space: nowrap
}

button.resend.sended:before {
    content: "[" attr(data-interval) "]";
    padding-left: 20px;
    padding-right: 5px;
    background-image: url(/i/check-blue.svg);
    background-position: left center;
    min-width: 30px;
    height: 20px;
    display: flex;
    background-size: 16px;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: left;
    color: #338bd9
}

button:focus,button:hover,.button:focus,.button:hover {
    box-shadow: 2px 2px 0 0 #8ca7b5;
    color: #fff
}

button:active,.button:active {
    background: #146dbc;
    box-shadow: none
}

button,img {
    border: none
}

button {
    outline: none
}

button[disabled] {
    background-color: #e5e5e5!important;
    cursor: default!important
}

button[disabled]:focus,button[disabled]:hover {
    box-shadow: none
}

input[disabled],textarea[disabled] {
    background-color: #e6 !important;
    cursor: not-allowed!important
}

input[readonly],textarea[readonly] {
    background-color: #e5e5e5!important;
    cursor: default!important
}

input[type=range][disabled] {
    border: 1px solid #c4c3c3!important
}

input[type=range][readonly] {
    border: 1px solid #c4c3c3!important
}

input[type=range][disabled]::-webkit-slider-thumb {
    background: #c4c3c3!important
}

input[type=range][disabled]::-moz-range-thumb {
    background: #c4c3c3!important
}

button[data-name] {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 40px;
    height: 40px;
    font-family: Roboto,sans-serif;
    background: 0 0;
    border: 1px solid #c6cacc;
    border-radius: 4px;
    box-shadow: none;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    font-size: 0;
    color: #2b292d;
    padding: 0
}

button[data-name=share] {
    background-image: url(/i/share.svg)
}

button[data-name=share]:hover {
    background-image: url(/i/share_hover.svg)
}

button[data-name=delete] {
    background-image: url(/i/delete.svg)
}

button[data-name=delete]:hover {
    background-image: url(/i/delete_hover.svg)
}

button[data-name=erase] {
    background-image: url(/i/erase.svg);
    background-size: 24px
}

button[data-name=erase]:hover {
    background-image: url(/i/erase_hover.svg)
}

button[data-name=export] {
    background-image: url(/i/export.svg);
    background-position: 10px center;
    justify-content: left;
    padding: 0 10px 0 35px;
    border: 1px solid #338bd9;
    font-size: 16px;
    width: auto;
    min-width: 200px
}

button[data-name=export]:hover {
    background-image: url(/i/export_hover.svg)
}

button[data-name=daterange] {
    background-image: url(/i/date.svg);
    background-position: 10px center;
    padding: 0 10px 0 35px;
    border: 1px solid #338bd9;
    justify-content: left;
    font-size: 16px;
    width: auto;
    min-width: 200px
}

button[data-name=daterange]:hover {
    background-image: url(/i/date_hover.svg)
}

button[data-name=reset] {
    width: 40px;
    min-width: 40px;
    background-image: url(/i/filters_drop.svg)
}

button[data-name=reset]:hover {
    background-image: url(/i/filters_drop_hover.svg)
}

button[data-name=refresh] {
    width: 40px;
    min-width: 40px;
    background-image: url(/i/reload.svg)
}

button[data-name=refresh]:hover {
    background-image: url(/i/reload_hover.svg)
}

button[data-name=edit] {
    background-image: url(/i/pencil.svg)
}

button[data-name=edit]:hover {
    background-image: url(/i/pencil_hover.svg)
}

div[data-name] {
    justify-content: left;
    font-size: 16px;
    border: 1px solid #338bd9;
    padding: 0 10px;
    background-position: 10px center;
    min-width: 225px;
    display: flex;
    align-items: center;
    position: relative;
    height: 40px;
    font-family: Roboto,sans-serif;
    background: 0 0;
    border-radius: 4px;
    box-shadow: none;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: 18px;
    color: #2b292d
}

.loading {
    position: relative
}

.loading:after {
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(51 139 217/20%);
    background-color: rgb(249 180 83/25%);
    background-image: url(/i/loader.svg);
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 3px;
    z-index: 100
}

.loading[data-loader=left]:after {
    background-position: 10px center
}

.loading[data-loader=right]:after {
    background-position: right 10px center
}

.copy {
    background-image: url(/i/book.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    min-width: 15px;
    height: 20px;
    display: inline-flex;
    padding-left: 20px;
    align-items: center;
    cursor: pointer;
    transition: .3s linear
}

.copy.right {
    background-position: right center;
    padding-left: 0;
    padding-right: 20px
}

.copy.orange {
    background-image: url(/i/book_orange.svg)
}

.copy.big {
    min-width: 28px;
    height: 35px;
    padding-right: 32px
}

.copy.text:before {
    content: attr(title);
    padding-left: 5px;
    font-size: 16px
}

.copy.big.text:before {
    font-size: 20px
}

.copy.copied,.copy.copied:hover,.copy.copied:active,.copy.copied:focus {
    background-image: url(/i/book_green.svg)
}

.copy:hover,.copy:active,.copy:focus {
    background-image: url(/i/book_hover.svg)
}

.copy.orange:hover,.copy.orange:active,.copy.orange:focus {
    background-image: url(/i/book.svg)
}

form {
    position: relative
}

form.loading input,form.loading textarea,form.loading select,form.loading button,form.loading .utm-builder {
    background-color: #e6 !important;
    pointer-events: none!important
}

form:not(.ready) input,form:not(.ready) textarea,form:not(.ready) select,form:not(.ready) button,form:not(.ready) .utm-builder {
    background-color: #e6 !important;
    pointer-events: none!important
}

.upgrade-container {
    background: #e5e5e5;
    border: 1px solid #c7c9cb;
    padding: 20px;
    font-size: 20px;
    text-align: left;
    border-radius: 5px;
    position: fixed;
    top: 25%;
    left: calc(50% - 180px);
    width: 360px;
    margin: 0;
    z-index: 10000
}

.upgrade-container>h3 {
    font-size: 24px;
    color: #2c4158;
    text-align: center;
    width: 100%
}

.upgrade-container>div {
    font-size: 16px;
    background-image: url(/i/lock.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 70px;
    padding-left: 70px
}

.upgrade-container>a {
    width: 100%;
    margin-top: 15px
}

.upgrade-container>span {
    position: absolute;
    display: block;
    cursor: pointer;
    width: 16px;
    height: 16px;
    font-size: 20px;
    right: 5px;
    top: 5px;
    color: #338bd9;
    text-align: center
}

.error-container {
    background: #fff;
    border: 1px solid #c7c9cb;
    padding: 20px 20px 20px 45px;
    font-size: 20px;
    text-align: left;
    border-radius: 5px;
    position: fixed;
    top: 50%;
    left: calc(50% - 125px);
    width: 250px;
    margin: 0;
    z-index: 10000;
    display: flex;
    color: #f44336;
    font-weight: 700;
    margin-right: 10px;
    background-image: url(/i/attention.svg);
    background-repeat: no-repeat;
    background-position: 10px center;
    background-size: 26px;
    min-height: 40px
}

form .error-container {
    position: absolute;
    margin: 0 auto;
    font-size: 15px;
    border-radius: 3px;
    margin-bottom: 5px;
    width: auto;
    top: auto;
    left: auto;
    padding: 10px 20px 10px 45px;
    text-transform: none
}

form .error-container:after {
    content: '';
    display: block;
    border: 8px solid transparent;
    border-top-color: #c7c9cb;
    position: absolute;
    left: 10px;
    bottom: -17px
}

.error-container>div {
    text-overflow: ellipsis;
    font-size: 16px;
    white-space: break-spaces;
}

.error-container>span {
    position: absolute;
    display: block;
    cursor: pointer;
    width: 16px;
    height: 16px;
    font-size: 20px;
    right: 5px;
    top: 5px;
    color: #338bd9;
    text-align: center
}

form .error-container>span {
    right: 0;
    top: 2px
}

.notify {
    background: #f9b453!important;
    color: #252525!important;
    padding: 10px 20px;
    border-radius: 0 0 5px 5px;
    border-top: 1px solid #60253d;
    margin-bottom: -3px;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    display: flex;
    width: 100%!important;
    z-index: 99;
    position: relative
}

.notify .notify-image {
    background-image: url(/i/socket.svg);
    background-repeat: no-repeat;
    height: 100%;
    min-height: 60px;
    width: 80px;
    background-size: contain;
    background-position: center;
    margin-right: 0!important;
    margin-bottom: 1rem!important
}

.notify .notify-text {
    margin-bottom: 1rem!important;
    max-width: calc(100% - 100px)
}

.notify .notify-text H2 {
    font-weight: 600;
    font-size: 20px;
    font-size: 1.25rem;
    margin-bottom: .25rem!important;
    text-align: center
}

.notify.mini .notify-image {
    min-height: 24px;
    width: 40px
}

.notify.mini {
    padding: 5px 10px
}

.notify .notify-text p {
    font-weight: 500;
    font-size: 18px;
    font-size: 1.125rem;
    margin-bottom: 0!important
}

.notify .notify-text .notify-hint {
    font-weight: 300;
    font-size: 13px;
    font-size: .813rem;
    margin-top: .25rem!important
}

.notify button {
    border-radius: 10px;
    max-width: 200px
}

.notify.blue {
    background: #44CDFD!important
}

.notify.blue button {
    background: #32965d
}

.notify.yellow {
    background: #F7EE7F!important
}

.notify.yellow button {
    background: #645e14
}

@media (min-width: 576px) {
    .notify {
        flex-direction:row
    }

    .notify .notify-text H2 {
        text-align: left
    }

    .notify button {
        margin-left: auto
    }

    .notify .notify-image {
        margin-right: 1rem!important;
        margin-bottom: 0!important
    }

    .notify .notify-text {
        margin-bottom: 0!important
    }

    .notify .notify-text H2 {
        font-size: 24px;
        font-size: 1.5rem
    }
}

@media (max-width: 575px) {
    .notify {
        text-align:center
    }
}

.validate-code {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.validate-code input {
    width: 50px;
    padding: 0;
    text-align: center;
    margin: 0 5px;
    font-size: 30px;
    font-weight: 700;
    color: #338bd9
}

.validate-code input::-webkit-outer-spin-button,.validate-code input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.validate-code input[type=number] {
    -moz-appearance: textfield
}

body.open-popup {
    overflow: hidden
}

.dialog,.modal-overlay {
    opacity: 0;
    z-index: -100
}

.modal-overlay {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(212 212 212/.5);
    cursor: pointer
}

.modal-overlay.opened {
    z-index: 1002;
    opacity: 1;
    transition: all .3s linear
}

.dialog {
    position: fixed;
    top: -100%;
    left: 0;
    outline: 0;
    max-width: 800px;
    min-width: 350px;
    width: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    transition: top .3s linear;
    max-height: 600px;
    overflow-y: auto
}

.dialog.compact {
    width: 400px;
    max-width: 400px
}

.dialog.advanced {
    height: 80%;
    height: calc(80% - 60px)
}

.dialog.compact .dialog-footer button:last-child,.dialog .dialog-footer .button:last-child {
    margin-left: 25px
}

.dialog.opened {
    z-index: 1003;
    opacity: 1;
    top: 200px
}

.dialog .dialog-close {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(51 139 217/.1);
    border-radius: 32px;
    font-size: 21px;
    color: #338bd9;
    font-family: Arial;
    cursor: pointer;
    z-index: 1000
}

.dialog .dialog-close:before {
    content: 'X'
}

.dialog .dialog-close:hover {
    opacity: .8
}

.dialog .dialog-header,.dialog .dialog-footer,.dialog .dialog-double,.dialog .dialog-button,.dialog .dialog-message {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative
}

div[data-stage] [data-switch].dialog-footer {
    z-index: 1!important
}

.dialog .dialog-double>div {
    width: calc(50% - 10px);
    padding: 0
}

.dialog .dialog-content,.dialog .dialog-body {
    padding: 10px 20px;
    width: 100%
}

.dialog .dialog-header {
    font-size: 24px;
    font-family: Roboto,sans-serif;
    font-weight: 500;
    line-height: 28px;
    margin-top: -18px
}

.dialog .dialog-message {
    padding: 30px 20px 20px;
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    color: #424242
}

.dialog .dialog-footer button,.dialog .dialog-footer .button {
    max-width: 200px
}

.dialog.compact .dialog-footer button.center,.dialog.compact .dialog-footer .button.center {
    max-width: 100%
}

div[data-stage] {
    position: relative
}

div[data-stage] [data-switch] {
    opacity: 0;
    z-index: -1;
    transition: .3s ease-out;
    position: absolute;
    top: 0
}

div[data-stage="1"] [data-switch="1"],div[data-stage="2"] [data-switch="2"],div[data-stage="3"] [data-switch="3"],div[data-stage="4"] [data-switch="4"],div[data-stage="5"] [data-switch="5"] {
    opacity: 1;
    z-index: 2;
    position: relative
}

div[data-stage] span[data-index] {
    font-size: 13px;
    color: #338bd9;
    text-decoration: none;
    cursor: pointer;
    display: block;
    margin: 20px auto 0;
    text-align: center
}

div[data-stage] span[data-index]:hover {
    color: #2b292d
}

.dialog .dialog-hint {
    font-size: 13px;
    color: #adacac;
    display: flex;
    align-items: center;
    height: 24px;
    padding-left: 5px;
    user-select: none
}

.dialog .dialog-hint:after {
    content: '';
    position: absolute;
    right: 4px;
    top: -4px;
    width: 20px;
    height: 20px;
    background-position: center;
    background-size: 20px;
    background-repeat: no-repeat
}

.dialog .dialog-hint .dialog-hint-wrap {
    background-image: url(/i/info.svg);
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    cursor: help;
    width: 16px;
    height: 16px;
    padding-left: 16px;
    border-radius: 16px;
    margin-left: 5px;
    margin-top: 2px
}

.dialog .dialog-hint .dialog-hint-wrap>span {
    display: none
}

.dialog-hint-window {
    position: absolute;
    left: 0;
    top: 0;
    width: 300px;
    padding: 12px;
    color: #2c4158;
    font-size: 16px;
    line-height: 18px;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 1px 2px 4px 0 #2c4158;
    border: 1px solid #2c4158;
    z-index: 150000;
    display: none
}

.dialog-hint-window a {
    color: #338bd9;
    border-bottom: 1px solid transparent;
    transition: all .3s linear
}

.dialog-hint-window a:hover {
    border-bottom: 1px solid #338bd9
}

@media (max-width: 810px) {
    .dialog {
        padding:10px 10px 20px;
        width: auto;
        left: 10px!important;
        right: 10px!important
    }

    .dialog .dialog-hint .dialog-hint-wrap {
        position: initial
    }

    .dialog .dialog-hint .dialog-hint-wrap>span {
        right: 0;
        left: 0;
        top: 31px
    }

    .dialog.advanced {
        height: 80%;
        height: calc(80% - 60px)
    }
}

@media (max-width: 480px) {
    .dialog {
        padding:5px 5px 10px;
        left: 0!important;
        right: 0!important
    }

    .dialog .dialog-header {
        margin-top: 0;
        flex-wrap: wrap
    }

    .dialog.advanced {
        height: 90%;
        height: calc(90% - 30px)
    }

    .dialog .dialog-double {
        flex-wrap: wrap;
        padding-top: 0
    }

    .dialog .dialog-double>div {
        width: 100%;
        padding-top: 10px
    }

    .dialog .dialog-footer button,.dialog .dialog-footer .button {
        max-width: 45%
    }

    .dialog.compact {
        width: 100%;
        max-width: 360px
    }

    .navy-pages {
        flex-wrap: wrap;
        height: auto
    }

    .navy-pages [data-contain] {
        width: 100%
    }

    .navy-pages>div:first-child {
        margin-top: 10px;
        width: 100%;
        justify-content: space-between;
        height: auto
    }
}

.h-captcha {
    margin: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px
}

.h-captcha:empty:before {
    content: 'Captcha loading...';
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 10px
}

.debug {
    display: none
}

.debug:not(:empty) {
    display: block;
    overflow-x: hidden;
    overflow-y: scroll;
    max-width: 1280px;
    height: 150px;
    white-space: pre;
    padding: 0 20px;
    margin: 10px auto
}

@media (max-height: 800px) {
    .dialog:not(.staged)overflow-y:auto;
    max-height:100%}
}

.domain-select {
    height: 40px;
    position: relative;
    overflow: hidden;
    min-width: 200px
}

.domain-select.opened {
    overflow: unset
}

.domain-select-current {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    border-radius: 3px;
    border: 1px solid #cfd3d5;
    height: 40px;
    align-items: center
}

.domain-select-current input {
    background: #ffffff!important;
    cursor: pointer!important;
    border: 0;
    height: 33px
}

.domain-select-current icon {
    height: 40px;
    width: 40px;
    background-image: url(/i/arrow_down_blue.svg);
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat
}

.domain-select.opened .domain-select-current icon {
    background-image: url(/i/arrow_up_blue.svg)
}

.domain-select.opened .domain-select-current {
    border-radius: 3px 3px 0 0
}

.domain-select-content {
    position: absolute;
    width: 100%;
    background: #fff;
    z-index: -1;
    height: 1px;
    border-radius: 0 0 3px 3px;
    border: 1px solid #cfd3d5;
    top: 34px;
    max-height: 250px;
    max-width: 350px;
    overflow-y: auto;
    overflow-x: hidden;
    transition: .3s;
    opacity: 0
}

.domain-select.opened .domain-select-content {
    opacity: 1;
    z-index: 100;
    height: auto
}

.domain-select-group:not(:last-child) {
    border-bottom: 1px solid #cfd3d5
}

.domain-select-add {
    height: 20px;
    text-align: center;
    border-radius: 3px;
    color: #fff;
    background: #338bd9;
    display: none;
    font-size: 11px;
    padding: 0;
    align-items: center;
    justify-content: center;
    margin: 5px 10px
}

a.domain-select-add:hover {
    background: 0 0;
    border: 1px solid #cfd3d5
}

.domain-select-group[data-count="0"] .domain-select-add {
    display: flex
}

.domain-select-group:before {
    content: attr(data-label);
    font-size: 10px;
    user-select: none;
    color: #5ab521;
    padding: 5px 10px 0;
    display: flex;
    height: 20px;
    align-items: center
}

.domain-select-item {
    width: 100%;
    height: 30px;
    padding: 5px 15px 5px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative
}

.domain-select-item.selected {
    background-color: rgb(51 139 217/25%)
}

.domain-select-item:hover {
    background-color: rgb(210 210 210/0.1)
}

.domain-select-item:before {
    content: ' ';
    position: absolute;
    display: block;
    top: 8px;
    left: 5px;
    width: 14px;
    height: 14px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center
}

.domain-select-item.disabled:before {
    background-image: url(https://s.wow.link/ui/lock.svg)
}

.domain-select-item a {
    height: 20px;
    width: 60px;
    text-align: center;
    border-radius: 3px;
    color: #fff;
    background: #5ab521;
    font-size: 11px;
    padding: 0;
    align-items: center;
    justify-content: center;
    display: none
}

.domain-select-item a:hover {
    background: 0 0;
    border: 1px solid #cfd3d5;
    color: #3088d5
}

.domain-select-item.disabled a {
    display: flex
}

.hidden-cat {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgb(201 201 201/50%);
    transition: all .5s;
    min-height: 25px
}

.hidden-cat:not(:last-child) {
    margin-bottom: 15px
}

.hidden-cat.opened {
    height: auto
}

.hidden-cat:before {
    content: attr(data-title);
    width: 100%;
    display: flex;
    align-items: center;
    height: 24px;
    font-size: 16px;
    background-image: url(/i/arrow_down_blue.svg);
    color: #338bd9;
    background-repeat: no-repeat;
    background-position: right 5px center;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    background-color: #fff;
    z-index: 2;
    border-bottom: 1px solid transparent;
    padding-top: 5px
}

.hidden-cat.opened:before {
    background-image: url(/i/arrow_up_blue.svg);
    color: #d9d9d9
}

.hidden-cat .hidden-cat-content {
    z-index: 1;
    width: 100%
}

.hidden-cat:not(.opened) .hidden-cat-content {
    display: none
}

[data-currency]:after {
    content: " " attr(data-currency)
}

/*selectize*/
.selectize-control.plugin-drag_drop.multi>.selectize-input.dragging {
    overflow: visible
}

.selectize-control.plugin-drag_drop.multi>.selectize-input>div.ui-sortable-placeholder {
    visibility: visible !important;
    background: #f2f2f2 !important;
    background: rgba(0,0,0,0.06) !important;
    border: 0 none !important;
    box-shadow: inset 0 0 12px 4px #fff
}

.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
    content: "!";
    visibility: hidden
}

.selectize-control.plugin-drag_drop .ui-sortable-helper {
    box-shadow: 0 2px 5px rgba(0,0,0,0.2)
}

.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header {
    position: relative;
    padding: 10px 8px;
    border-bottom: 1px solid #d0d0d0;
    background: #f8f8f8;
    border-radius: 3px 3px 0 0
}

.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header-close {
    position: absolute;
    right: 8px;
    top: 50%;
    color: #303030;
    opacity: .4;
    margin-top: -12px;
    line-height: 20px;
    font-size: 20px !important;
    text-decoration: none
}

.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header-close:hover {
    color: black
}

.selectize-dropdown.plugin-optgroup_columns .selectize-dropdown-content {
    display: flex
}

.selectize-dropdown.plugin-optgroup_columns .optgroup {
    border-right: 1px solid #f2f2f2;
    border-top: 0 none;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
    border-right: 0 none
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
    display: none
}

.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
    border-top: 0 none
}

.selectize-control.plugin-remove_button .item {
    display: inline-flex;
    align-items: center;
    padding-right: 0 !important
}

.selectize-control.plugin-remove_button .item .remove {
    color: inherit;
    text-decoration: none;
    vertical-align: middle;
    display: inline-block;
    padding: 2px 6px;
    border-left: 1px solid #d0d0d0;
    border-radius: 0 2px 2px 0;
    box-sizing: border-box;
    margin-left: 6px
}

.selectize-control.plugin-remove_button .item .remove:hover {
    background: rgba(0,0,0,0.05)
}

.selectize-control.plugin-remove_button .item.active .remove {
    border-left-color: #cacaca
}

.selectize-control.plugin-remove_button .disabled .item .remove:hover {
    background: 0
}

.selectize-control.plugin-remove_button .disabled .item .remove {
    border-left-color: white
}

.selectize-control.plugin-clear_button .clear {
    text-decoration: none;
    display: flex;
    position: absolute;
    height: 100%;
    width: 25px;
    top: 0;
    right: calc(8px - 6px);
    color: #000;
    opacity: .4;
    font-weight: bold;
    border: 0;
    cursor: pointer;
    z-index: 1;
    font-size: 21px;
    justify-content: center;
    align-items: center
}

.selectize-control.plugin-clear_button .clear:hover {
    opacity: 1
}

.selectize-control.plugin-clear_button.single .clear {
    right: calc(8px - 6px + 1.5rem)
}

.selectize-dropdown.plugin-auto_position.selectize-position-top {
    border-top: 1px solid #d0d0d0;
    border-bottom: 0 none;
    border-radius: 3px 3px 0 0;
    box-shadow: 0 -6px 12px rgba(0,0,0,0.18)
}

.selectize-control.plugin-auto_position .selectize-input.selectize-position-top.dropdown-active {
    border-radius: 0 0 3px 3px;
    border-top: 0 none
}

.selectize-control.plugin-auto_position .selectize-input.selectize-position-top.dropdown-active::before {
    top: 0;
    bottom: unset
}

.selectize-control {
    position: relative
}

.selectize-dropdown,.selectize-input,.selectize-input input {
    color: #303030;
    font-family: inherit;
    font-size: 13px;
    line-height: 18px;
    font-smoothing: inherit
}

.selectize-input,.selectize-control.single .selectize-input.input-active {
    background: #fff;
    cursor: text;
    display: inline-block
}

.selectize-input {
    border: 1px solid #d0d0d0;
    padding: 8px 8px;
    display: inline-block;
    width: 100%;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
    border-radius: 3px
}

.selectize-control.multi .selectize-input.has-items {
    padding: calc(8px - 2px - 0px) 8px calc(8px - 2px - 3px - 0px)
}

.selectize-input.full {
    background-color: #fff
}

.selectize-input.disabled,.selectize-input.disabled * {
    cursor: default !important
}

.selectize-input.focus {
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.15)
}

.selectize-input.dropdown-active {
    border-radius: 3px 3px 0 0
}

.selectize-input>* {
    vertical-align: baseline;
    display: inline-block;
    zoom:1}

.selectize-control.multi .selectize-input>div {
    cursor: pointer;
    margin: 0 3px 3px 0;
    padding: 2px 6px;
    background: #f2f2f2;
    color: #303030;
    border: 0 solid #d0d0d0
}

.selectize-control.multi .selectize-input>div.active {
    background: #e8e8e8;
    color: #303030;
    border: 0 solid #cacaca
}

.selectize-control.multi .selectize-input.disabled>div,.selectize-control.multi .selectize-input.disabled>div.active {
    color: #7d7d7d;
    background: white;
    border: 0 solid white
}

.selectize-input>input {
    display: inline-block !important;
    padding: 0 !important;
    min-height: 0 !important;
    max-height: none !important;
    max-width: 100% !important;
    margin: 0 !important;
    text-indent: 0 !important;
    border: 0 none !important;
    background: none !important;
    line-height: inherit !important;
    user-select: auto !important;
    box-shadow: none !important
}

.selectize-input>input::-ms-clear {
    display: none
}

.selectize-input>input:focus {
    outline: none !important
}

.selectize-input>input[placeholder] {
    box-sizing: initial
}

.selectize-input.has-items>input {
    margin: 0 0 !important
}

.selectize-input::after {
    content: " ";
    display: block;
    clear: left
}

.selectize-input.dropdown-active::before {
    content: " ";
    display: block;
    position: absolute;
    background: #f0f0f0;
    height: 1px;
    bottom: 0;
    left: 0;
    right: 0
}

.selectize-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 10;
    border: 1px solid #d0d0d0;
    background: #fff;
    margin: -1px 0 0 0;
    border-top: 0 none;
    box-sizing: border-box;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 0 0 3px 3px
}

.selectize-dropdown [data-selectable] {
    cursor: pointer;
    overflow: hidden
}

.selectize-dropdown [data-selectable] .highlight {
    background: rgba(125,168,208,0.2);
    border-radius: 1px
}

.selectize-dropdown .option,.selectize-dropdown .optgroup-header,.selectize-dropdown .no-results,.selectize-dropdown .create {
    padding: 5px 8px
}

.selectize-dropdown .option,.selectize-dropdown [data-disabled],.selectize-dropdown [data-disabled] [data-selectable].option {
    cursor: inherit;
    opacity: .5
}

.selectize-dropdown [data-selectable].option {
    opacity: 1;
    cursor: pointer
}

.selectize-dropdown .optgroup:first-child .optgroup-header {
    border-top: 0 none
}

.selectize-dropdown .optgroup-header {
    color: #303030;
    background: #fff;
    cursor: default
}

.selectize-dropdown .active {
    background-color: #e8e8e8;
    color: #303030
}

.selectize-dropdown .active.create {
    color: #495c68
}

.selectize-dropdown .selected {
    background-color: #e8e8e8;
    color: #303030
}

.selectize-dropdown .create {
    color: rgba(48,48,48,0.5)
}

.selectize-dropdown .active:not(.selected) {
    background: #f5fafd;
    color: #495c68
}

.selectize-dropdown-content {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 200px;
    overflow-scrolling: touch
}

.selectize-dropdown-emptyoptionlabel {
    text-align: center
}

.selectize-dropdown .spinner {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 5px 8px
}

.selectize-dropdown .spinner:after {
    content: " ";
    display: block;
    width: 24px;
    height: 24px;
    margin: 3px;
    border-radius: 50%;
    border: 5px solid #d0d0d0;
    border-color: #d0d0d0 transparent #d0d0d0 transparent;
    animation: lds-dual-ring 1.2s linear infinite
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.selectize-control.single .selectize-input,.selectize-control.single .selectize-input input {
    cursor: pointer
}

.selectize-control.single .selectize-input.input-active,.selectize-control.single .selectize-input.input-active input:not(:read-only) {
    cursor: text
}

.selectize-control.single .selectize-input:not(.no-arrow):after {
    content: " ";
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -3px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #808080 transparent transparent transparent
}

.selectize-control.single .selectize-input:not(.no-arrow).dropdown-active:after {
    margin-top: -4px;
    border-width: 0 5px 5px 5px;
    border-color: transparent transparent #808080 transparent
}

.selectize-control.rtl {
    text-align: right
}

.selectize-control.rtl.single .selectize-input:after {
    left: 15px;
    right: auto
}

.selectize-control.rtl .selectize-input>input {
    margin: 0 4px 0 -2px !important
}

.selectize-control .selectize-input.disabled {
    opacity: .5;
    background-color: #fafafa
}

.selectize-dropdown.plugin-auto_position.selectize-position-top {
    border-top: 1px solid #d0d0d0;
    border-bottom: 0 none;
    border-radius: 3px 3px 0 0;
    box-shadow: 0 -6px 12px rgba(0,0,0,0.18)
}

.selectize-control.plugin-auto_position .selectize-input.selectize-position-top.dropdown-active {
    border-radius: 0 0 3px 3px;
    border-top: 0 none
}

.selectize-control.plugin-auto_position .selectize-input.selectize-position-top.dropdown-active::before {
    top: 0;
    bottom: unset
}

.selectize-control.plugin-clear_button .clear {
    text-decoration: none;
    display: flex;
    position: absolute;
    height: 100%;
    width: 25px;
    top: 0;
    right: calc(8px - 6px);
    color: #000;
    opacity: .4;
    font-weight: bold;
    border: 0;
    cursor: pointer;
    z-index: 1;
    font-size: 21px;
    justify-content: center;
    align-items: center
}

.selectize-control.plugin-clear_button .clear:hover {
    opacity: 1
}

.selectize-control.plugin-clear_button.single .clear {
    right: calc(8px - 6px + 1.5rem)
}

.selectize-control.plugin-drag_drop.multi>.selectize-input.dragging {
    overflow: visible
}

.selectize-control.plugin-drag_drop.multi>.selectize-input>div.ui-sortable-placeholder {
    visibility: visible !important;
    background: #f2f2f2 !important;
    background: rgba(0,0,0,0.06) !important;
    border: 0 none !important;
    box-shadow: inset 0 0 12px 4px #fff
}

.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
    content: "!";
    visibility: hidden
}

.selectize-control.plugin-drag_drop .ui-sortable-helper {
    box-shadow: 0 2px 5px rgba(0,0,0,0.2)
}

.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header {
    position: relative;
    padding: 10px 8px;
    border-bottom: 1px solid #d0d0d0;
    background: #f8f8f8;
    border-radius: 3px 3px 0 0
}

.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header-close {
    position: absolute;
    right: 8px;
    top: 50%;
    color: #303030;
    opacity: .4;
    margin-top: -12px;
    line-height: 20px;
    font-size: 20px !important;
    text-decoration: none
}

.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header-close:hover {
    color: black
}

.selectize-dropdown.plugin-optgroup_columns .selectize-dropdown-content {
    display: flex
}

.selectize-dropdown.plugin-optgroup_columns .optgroup {
    border-right: 1px solid #f2f2f2;
    border-top: 0 none;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
    border-right: 0 none
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
    display: none
}

.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
    border-top: 0 none
}

.selectize-control.plugin-remove_button .item {
    display: inline-flex;
    align-items: center;
    padding-right: 0 !important
}

.selectize-control.plugin-remove_button .item .remove {
    color: inherit;
    text-decoration: none;
    vertical-align: middle;
    display: inline-block;
    padding: 2px 6px;
    border-left: 1px solid #d0d0d0;
    border-radius: 0 2px 2px 0;
    box-sizing: border-box;
    margin-left: 6px
}

.selectize-control.plugin-remove_button .item .remove:hover {
    background: rgba(0,0,0,0.05)
}

.selectize-control.plugin-remove_button .item.active .remove {
    border-left-color: #cacaca
}

.selectize-control.plugin-remove_button .disabled .item .remove:hover {
    background: 0
}

.selectize-control.plugin-remove_button .disabled .item .remove {
    border-left-color: white
}
