﻿html {
    --scrollbarBG: #fff9f3;
    --thumbBG: #ff7134;
}

body::-webkit-scrollbar {
    width: 11px;
}

body {
    scrollbar-width: thin;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}

    body::-webkit-scrollbar-track {
        background: var(--scrollbarBG);
    }

    body::-webkit-scrollbar-thumb {
        background-color: var(--thumbBG);
        border-radius: 6px;
        border: 3px solid var(--scrollbarBG);
    }

.ms-module::-webkit-scrollbar {
    width: 11px;
}

.ms-module {
    scrollbar-width: thin;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}

.ms-module::-webkit-scrollbar-track {
    background: var(--scrollbarBG);
}

.ms-module::-webkit-scrollbar-thumb {
    background-color: var(--thumbBG);
    border-radius: 6px;
    border: 3px solid var(--scrollbarBG);
}

.ms-modal {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: rgba(61, 61, 61, 0.4);
    cursor: pointer;
}

.ms-modal-body {
    position: relative;
    height: 100%;
    -webkit-animation-name: animateOn;
    -webkit-animation-duration: 1s;
    animation-name: animateOn;
    animation-duration: 1s;
}

.ms-modal-body-survey {
    position: relative;
    height: 100%;
    -webkit-animation-name: animateOnB;
    -webkit-animation-duration: 0.5s;
    animation-name: animateOnB;
    animation-duration: 0.5s;
}

    /* Add Animation */
@-webkit-keyframes animateOn {
    from {
        right: -50%;
        opacity: 0
    }

    to {
        right: 0;
        opacity: 1
    }
}

@keyframes animateOn {
    from {
        right: -50%;
        opacity: 0
    }

    to {
        right: 0;
        opacity: 1
    }
}

@-webkit-keyframes animateOff {
    from {
        right: 0;
        opacity: 0
    }

    to {
        right: -50%;
        opacity: 1
    }
}

@keyframes animateOff {
    from {
        right: 0;
        opacity: 0
    }

    to {
        right: -50%;
        opacity: 1
    }
}

@-webkit-keyframes animateOnB {
    from {
        bottom: -50%;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

@keyframes animateOnB {
    from {
        bottom: -50%;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

@-webkit-keyframes animateOffB {
    from {
        bottom: 0;
        opacity: 0
    }

    to {
        bottom: -50%;
        opacity: 1
    }
}

@keyframes animateOffB {
    from {
        bottom: 0;
        opacity: 0
    }

    to {
        bottom: -50%;
        opacity: 1
    }
}

.lbSpace {
    padding-right : 50px;
}

.labelCB {
    margin: 0;
    display: inline-block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    color: #616161;
    font-weight: 500;
}

.labelCB:hover {
color: #ff7134;
}

.input {
    height: 1px;
    width: 1px;
    opacity: 0;
}

.outside {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    border: 2px solid #ff7134;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: none;
}

.inside {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: inline-block;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: #ff7134;
    left: 3px;
    top: 3px;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
}

.outsideCB {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
    width: 18px;
    height: 18px;
    border: 1px solid #616161;
    border-radius: 30%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: none;
}

.outsideCB:hover {
        border: 1px solid #ff7134;
}

input:checked + .outsideCB {
    border: none;
}

.insideCB {
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: inline-block;
    border-radius: 30%;
    width: 18px;
    height: 18px;
    background: #ff7134;
    left: 0;
    top: 0;
    border: 1px solid #ff7134;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
}

    .insideCB:before {
        content: '\2713';
        color: white;
        font-weight:600;
        width: 4px;
        height: 9px;
        margin: 0px 3px;
        top:20px;
    }

.no-transforms .inside {
    left: auto;
    top: auto;
    width: 0;
    height: 0;
}

.no-transforms .insideCB {
    left: auto;
    top: auto;
    width: 0;
    height: 0;
}

input {
    /*  &:focus, &:active {
        + .outside {
          border-color: $almost-black;
        }
      }*/
}

    input:checked + .outside .inside {
        -webkit-animation: radio-select 0.1s linear;
        animation: radio-select 0.1s linear;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    input:checked + .outsideCB .insideCB {
        border-color:#ff7134;
        -webkit-animation: radio-select 0.1s linear;
        animation: radio-select 0.1s linear;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

.no-transforms input:checked + .outside .inside {
    width: 10px;
    height: 10px;
}

.no-transforms input:checked + .outsideCB .insideCB {
    width: 10px;
    height: 10px;
}

.collapsible {
    cursor: pointer;
    padding: 18px;
    border: none;
    text-align: right;
    outline: none;
    font-size: 15px;
}

    .active, .collapsible:hover {
    }

.content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.tooltip {
    position: relative;
    display: inline-block;
}

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 140px;
        background-color: #555;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px;
        position: absolute;
        z-index: 1;
        bottom: 150%;
        left: 50%;
        margin-left: -75px;
        opacity: 0;
        transition: opacity 0.3s;
    }

        .tooltip .tooltiptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #555 transparent transparent transparent;
        }

    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }

.txtVisible {
    height: 1px;
    min-width: 400px;
    border-color: white;
    background-color: white;
    cursor:default;
    top: 90%;
}

.txtVisible:hover {
    border-color: white;
    background-color: white;
    cursor: pointer;
}

