/* @font-face {
    font-family: NexaBlackItalic;
    src: url(fonts/NexaBlackItalic.otf);
    font-display: swap;
}

@font-face {
    font-family: NexaBoldItalic;
    src: url(fonts/NexaBoldItalic.otf);
    font-display: swap;
}

@font-face {
    font-family: NexaBook;
    src: url(fonts/NexaBook.otf);
    font-display: swap;
}

@font-face {
    font-family: NexaXBold;
    src: url(fonts/NexaXBold.otf);
    font-display: swap;
}

*{
    font-family: 'NexaBook', sans-serif;
} */

.checkbox {
    --size: 18px;
    position: relative;
    margin-left: 5px;
    margin-right: 5px;
}

.checkbox *,
.checkbox *:before,
.checkbox *:after {
    box-sizing: border-box;
}

.checkbox .promoted-input-checkbox {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.checkbox input:checked~svg {
    height: calc(var(--size) * 0.6);
    -webkit-animation: draw-checkbox-28 ease-in-out 0.2s forwards;
    animation: draw-checkbox-28 ease-in-out 0.2s forwards;
}

.checkbox label:active::after {
    background-color: #e6e6e6;
}

.checkbox label {
    color: #6c6b6b;
    line-height: var(--size);
    cursor: pointer;
    position: relative;
    font-size: 12px;
}

.checkbox label a {
    color: #6c6b6b !important;
    font-weight: 600;
}

.checkbox label:after {
    content: "";
    height: var(--size);
    width: var(--size);
    margin-right: 8px;
    float: left;
    border: 2px solid #b5b5b5;
    border-radius: 0px;
    transition: 0.15s all ease-out;
}

.checkbox svg {
    stroke: var(--themecolor1);
    stroke-width: 3px;
    height: 0;
    width: calc(var(--size) * 0.6);
    position: absolute;
    left: calc(var(--size) * 0.23);
    top: calc(var(--size) * 0.4);
    stroke-dasharray: 33;
}

@-webkit-keyframes draw-checkbox-28 {
    0% {
        stroke-dashoffset: 33;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes draw-checkbox-28 {
    0% {
        stroke-dashoffset: 33;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.tyc-title{
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
}

.tyc-content{
    padding: 2% 0;
}

.tyc-content,
.tyc-content h5{
    font-size: 13px;
}

.tyc-content h5{
    text-transform: uppercase;
    margin-bottom: 3px;
}

.form-field-msj{
    display: none;
    line-height: 1.2;
}

.form-field-msj span {
    font-size: 11px;
    margin-left: 12px;
    color: var(--danger);
    font-weight: 600;
}

/* ///////////////// ALERTIFY MODIFICATIONS ////////////////// */
.alertify .ajs-dialog {
    position: relative;
    margin: 5% auto;
    min-height: 110px;
    max-width: 500px;
    padding: 24px 24px 0 24px;
    outline: 0;
    background-color: #fff;
}

.alertify .ajs-header {
    margin: -24px;
    margin-bottom: 0;
    padding: 16px 24px;
    background-color: #fff;
}

.alertify .ajs-body {
    min-height: 56px;
}

.alertify .ajs-footer {
    padding: 4px;
    margin-left: -24px;
    margin-right: -24px;
    min-height: 43px;
    background-color: #fff;
}

.alertify .ajs-body .ajs-content {
    font-size: 14px;
}

.alertify .ajs-footer .ajs-buttons .ajs-button {
    background-color: transparent;
    color: #000;
    border: 1px solid #dcdcdc;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.alertify .ajs-footer .ajs-buttons .ajs-button.ajs-ok {
    background: #000;
    color: #fff;
}

.alertify-notifier .ajs-message {
    position: relative;
    width: 265px;
    max-height: 0;
    padding: 0;
    opacity: 0;
    margin: 0;
    text-align: center;
    font-size: 13px;
}

.alertify-notifier .ajs-message.ajs-visible {
    opacity: 1;
    max-height: 100%;
    padding: 10px 10px;
    margin-top: 10px;
}

.alertify-notifier .ajs-message.ajs-success {
    /* border: 1px solid #000; */
    /* background: white;
    color: black; */
    background: var(--themecolor1);
    color: #fff;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.alertify-notifier .ajs-message.ajs-error {
    /* border: 1px solid #000; */
    /* background: white;
    color: black; */
    background: #000;
    color: #fff;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.text-red{
    color: var(--danger)!important;
}

@media screen and (max-width: 575px) {
    .checkbox label {
        font-size: 10px;
    }
}
