﻿
:root {
    font-size: 16px;
    --ultra-large: calc(50px + (155 - 50) * (100vw - 320px) / (1920 - 320));
    --h1: calc(32px + (48 - 19) * (100vw - 320px) / (1920 - 320));
    --h2: calc(16px + (32 - 16) * (100vw - 320px) / (1920 - 320));
    --h3: calc(16px + (24 - 16) * (100vw - 320px) / (1920 - 320));
    --p: calc(15px + (18 - 14) * (100vw - 320px) / (1920 - 320));
    --p-tiny: calc(14px + (16 - 14) * (100vw - 320px) / (1920 - 320));
    --footer: calc(10px + (14 - 10) * (100vw - 320px) / (1920 - 320));
}

.m-ultra-large {
    font-size: var(--ultra-large);
    line-height: 1;
}

.m-h1 {
    font-size: var(--h1);
    line-height: 1.1;
}

.m-h2 {
    font-size: var(--h2);
    line-height: 1.3;
}

.m-h2cash {
    font-size: var(--h2);
    line-height: 1.3;
}


.m-h3 {
    font-size: var(--h3);
    line-height: 1.3;
}

.m-p {
    font-size: var(--p);
    line-height: 1.2;
}

.m-p-tiny {
    font-size: var(--p-tiny);
    line-height: 1.2;
}

.m-footer {
    font-size: var(--footer);
    line-height: 1;
}

html, body {
    max-width: 100vw;
}

.w-slider-dot.w-active {
    background-color: #fff;
    width: 1.5rem !important;
    opacity: 1;
}

.w-slider-dot {
    width: 0.8rem !important;
    height: 0.7rem !important;
    border-radius: 4px;
    opacity: 0.5;
}

Single Checkbox
.CheckBoxLabel {
    white-space: nowrap;
}

.SingleCheckbox input[type=checkbox] {
    display: none;
}

.SingleCheckbox label {
    float: left;
    color: #616161;
    cursor: pointer;
    border-color: #616161;
    font-weight: 900;
}

    .SingleCheckbox label:hover {
        color: #ff7134;
    }

.SingleCheckbox input[type=checkbox] + label {
    width: 17px;
    height: 17px;
    border: 0.0625em solid #616161;
    border-radius: 0.35em;
    background: white;
    vertical-align: middle;
    line-height: 1em;
    text-indent: 20px;
}
    .SingleCheckbox input[type=checkbox] + label:hover {
        border-color: #ff7134;
    }

.SingleCheckbox input[type=checkbox]:checked + label::before {
    content: "\2714";
    color: white;
    width: 17px;
    line-height: 1.1em;
    font-weight: 900;
    margin-right: 6px;
    margin-left: -20px;
    background: #ff7134;
    border-radius: 0.35em;
    /*background-image: -moz-linear-gradient(rgb(212, 100, 8),rgb(212, 100, 8));*/
    /*background-image: -ms-linear-gradient(rgb(212, 100, 8),rgb(212, 100, 8));*/
    /*background-image: -o-linear-gradient(rgb(212, 100, 8),rgb(212, 100, 8));*/
    /*background-image: -webkit-linear-gradient(rgb(212, 100, 8),rgb(212, 100, 8));*/
    /*background-image: linear-gradient(rgb(212, 100, 8),rgb(212, 100, 8));*/
}
