@import "kit.css";
@import "root.css";
*,
*:before,
*:after {
    box-sizing: inherit;
    outline: none;
}
html {
    font-size: 1em;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
    height: 100%;
}
body {
    position: relative;
    min-width: 300px;
    margin: 0;
    font-family: var(--cci-font-main);
    color: #36414d;
    min-height: 100%;
}
b,
strong {
    font-weight: bold;
}
body a {
    text-decoration: none;
    color: #413D58;
}
a.cci-link {
    font-weight: 500;
    color: var(--cci-color-red);
    text-decoration: underline;
}
/*.cci-link__messenger {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    font-weight: 400 !important;*/
/*}*/
/*.cci-link__messenger img {*/
/*    margin-right: 8px;*/
/*    width: 20px*/
/*}*/
.cci-link__messenger {
    padding-left: 28px;
    font-weight: 400 !important;
    background-repeat: no-repeat;
    background-size: contain;
    /*background: url("/faq/images/support/whats-app.png") no-repeat left / contain;*/
}
.cci-link__messenger-whatsapp {
    background-image: url(/faq/images/support/whats-app.png);
}
.cci-link__messenger-telegram {
    background-image: url(/faq/images/support/telegram.png);
}
.cci-link__messenger-viber {
    background-image: url(/faq/images/support/viber.png);
}
.cci-text-green{
    color:#ACD372; 
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.cci-list{
    max-width: 80%;
}
ul.cci-list li:first-child{
    margin-top: 0;
}
ul.cci-list li{
    margin-top: 8px;
    padding-left: 12px;
    line-height:1.5;
    /*font-size: 20px;*/
}
ul.cci-list li::before {
    content: "\2022";
    color: #FA5F55;
    font-weight: bold;
    display: inline-block;
    width: 16px;
    margin-left: -12px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}
h1{
    font-size: 40px;
    line-height: 42px;
}
h2{
    font-size: 26px;
    line-height: 32px;
}
h3{
    font-size: 24px;
    line-height: 28px;
}
h4{
    font-size: 20px;
    line-height: 24px;
}
h5{
    font-size: 18px;
    line-height: 20px;
}
p {
    margin: 0;
}
button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: var(--cci-font-main);
}
.cci-btn{
    width: 100%;
    height: 64px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    font-style: normal;
    font-stretch: normal;
    line-height: 2.25;
    letter-spacing: 0.77px;
    text-align: center;
    color: #fafaff;
    background-color: var(--cci-color-red);
    white-space: nowrap;
}
.cci-btn__small {
    display: inline-block;
    width: auto;
    height: 40px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    font-style: normal;
    font-stretch: normal;
    text-align: center;
    color: #fafaff;
    background-color: var(--cci-color-red);
    white-space: nowrap;
    line-height: 40px;
    letter-spacing: 0.58px;
    padding: 0 calc(10px + (20 - 10) * (100vw - 575px) / (1920 - 575));
    max-width: 100%;
}
.button_2022 {
    font-family: var(--cci-font-rubik);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    border-radius: 4px;
    text-align: center;
}
.button_2022.button_2022--red {
    background-color: var(--cci-color-red);
    color: #fafaff;
}
.button_2022.button_2022--white{
    background: #FFFFFF;
    border: 1px solid rgba(51, 63, 72, 0.75);
    color: rgba(51, 63, 72, 0.75);
}
a {
    cursor: pointer;
}
input {
    color: #36414d;
    font-family: var(--cci-font-main);
}
input:focus {
    outline: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type='date'] {
    -moz-appearance: textfield;
    -webkit-appearance: none;
}
input::-ms-clear {
    display: none;
}
/* START TOOLTIP STYLES */
[tooltip] {
    position: relative; /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
    text-transform: none; /* opinion 2 */
    font-size: .9em; /* opinion 3 */
    line-height: 1;
    user-select: none;
    pointer-events: none;
    position: absolute;
    display: none;
    opacity: 0;
}
[tooltip]::before {
    content: '';
    border: 5px solid transparent; /* opinion 4 */
    z-index: 1001; /* absurdity 1 */
}
[tooltip]::after {
    content: attr(tooltip); /* magic! */

    font-size: 16px;
    text-align: center;
    min-width: 3em;
    max-width: 30em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height:1.8;
    padding: 16px;
    background: #36414C;
    color: #fff;
    z-index: 1000;
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
    display: block;
}

/* don't show empty tooltips */
[tooltip='']::before,
[tooltip='']::after {
    display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
    bottom: 100%;
    border-bottom-width: 0;
    border-top-color: #36414C;
}
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
    bottom: calc(100% + 5px);
}
[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
    left: 2%;
    transform: translate(-50%, -.5em);
}

/* FLOW: DOWN */
[tooltip][flow^="down"]::before {
    top: 100%;
    border-top-width: 0;
    border-bottom-color: #36414C;
}
[tooltip][flow^="down"]::after {
    top: calc(100% + 5px);
}
[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
    left: 20%;

}

/* FLOW: LEFT */
[tooltip][flow^="left"]::before {
    top: 50%;
    border-right-width: 0;
    border-left-color: #333;
    left: calc(0em - 5px);
    transform: translate(-.55em, -10%);
}
[tooltip][flow^="left"]::after {
    top: 50%;
    right: calc(100% + 5px);
    transform: translate(-.5em, -20%);
}

/* FLOW: RIGHT */
[tooltip][flow^="right"]::before {
    top: 50%;
    border-left-width: 0;
    border-right-color: #333;
    right: calc(0em - 5px);
    transform: translate(.5em, -50%);
}
[tooltip][flow^="right"]::after {
    top: 50%;
    left: calc(100% + 5px);
    transform: translate(.5em, -50%);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
    to {
        opacity: 1;
        transform: translate(-2%, 0);
    }
}

@keyframes tooltips-horz {
    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
    animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
    animation: tooltips-horz 300ms ease-out forwards;
}

.mdi {
    font-size: 24px;
}
.semibold {
    font-weight: 600;
}
.green-color {
    color: #8fbf60;
}
.object-fit-image {
    object-fit: contain;
    font-family: 'object-fit: contain;';
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes pulse {
    50% {
        background: white;
    }
}
@keyframes pulse {
    50% {
        background: white;
    }
}
.headSpoiler {
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid #cdcdcd;
    padding: 22px 0 !important;
}

.direction--rtl .cci-list li:before {
    margin-left: 0;
}

.direction--rtl .headSpoiler:before, .direction--rtl .headSpoiler:after{
    left: 0;
    right: auto;
}

.headSpoiler:before, .headSpoiler:after {
    content: '';
    width: 11px;
    height: 1px;
    background: #000;
    right: 0;
    position: absolute;
    top: calc(50% - 1px);
}
.headSpoiler:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: transform .45s;
    -moz-transition: transform .45s;
    -ms-transition: transform .45s;
    -o-transition: transform .45s;
    transition: transform .45s;
}
.headSpoiler.active:after {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}
.textSpoiler {
    display: none;
    padding-top:8px;
    padding-left: 50px;
}
.notification_count {
    position: absolute;
    top: -4px;
    right: -10px;
}
.countdown-title {
    font: Bold 16px/16px var(--cci-font-main);
    color: #FFFFFF;
    text-align: right;
}
.countdown-dot {
    width: 4px;
    margin: 0 8px;
    color: #fff;
}

.countdown-number {
    font: Bold 22px/32px var(--cci-font-main);
    letter-spacing: 0px;
    color: #000000;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    height: 32px;
    text-align: center;
}
.header__notice-dot{
    margin-top: -13px;
    margin-left: -9px;
}
.header__notice-dot-active{
    display: none;
}
#tr_time_start{
    display: flex;   
    justify-content: center;
}
#modal__countdown .countdown-number{
    font: Bold 42px / 42px var(--cci-font-main) !important; 
    letter-spacing: 0;
    color: #fff !important;
    background: transparent !important;
    height: auto !important;
    text-align: center;
    padding: 12px !important;
}

#modal__countdown .countdown-dot{
    font-size: 36px !important;
}
.timer__items {
    display: flex;
    font-size: 48px;
  }
  .timer__item {
    position: relative;
    min-width: 60px;
    margin-left: 10px;
    margin-right: 10px;
    padding-bottom: 28px;
    text-align: center;
  }
  .timer__item::before {
    content: attr(data-title);
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    font-size: 14px;
  }
  .timer__item:not(:last-child)::after {
    content: ':';
    position: absolute;
    right: -15px;
  }

.text-direction--left{
    direction: ltr;
}
/* action */
/* animation */
.button-wheel {
    transition: all 0.25s ease;
}
.button-wheel .button-wheel--done, .button-wheel .loading{
    display: none;
}
.button-wheel.done .button-wheel--before {
    display: none;
}
.button-wheel.done .button-wheel--done {
    display: block;
}
.button-wheel.wheeling .button-wheel--before {
    display: none;
}
.button-wheel.wheeling .loading{
    display: block;
}
.button-wheel .loading{
    margin:auto;
}
.clearInput{
    position: absolute;
    right: 12px;
    color: rgba(54, 66, 76, 0.15);
    cursor: pointer;
}
.clearInput:hover{
    color: rgba(54, 66, 76, 0.8);
}

/**/
html body .googleTranslated {
    display: none;
}

html.translated-ltr body .googleTranslated {
    display:block !important;
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99999;
}

html.translated-ltr body .googleTranslated span{
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 8px 32px 8px 8px;
    border: 0px solid #fff;
    background-color: #fff;
    box-shadow: -4px 0 20px rgb(65 61 88 / 10%);
    z-index: 999999;
    font-size: 14px;
    line-height: 18px;
    max-width: 400px;
    margin-left: 20px;
}
html.translated-ltr body .googleTranslated span .mdi-close{
    position: absolute;
    top: 8px; right: 4px;
    cursor: pointer;
}
