* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    margin: 0px;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}

#main-app {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}


.mainWrap_outer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}

#headerBox {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 30px;
    background: transparent;
    z-index: 1;
}

.flexHeadWrap {
    display: flex;
    align-items: center;
}

.flexHeadWrap a {
    margin-right: 15px;
}

.lang-select {
    display: inline-flex;
    overflow: hidden;
    border: 1px solid  #3d7890;
    border-radius: 90px;
    background: #3d7890;
}

.lang-select label {
    position: relative;
    height: 100%;
    display: block;
    height: 30px;
}

.lang-select [type="radio"] {
    display: none;
    z-index: 5;
    position: relative;
}

.lang-select [type="radio"]~span {
    cursor: pointer;
    height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 0 12px;
    z-index: 5;
    position: relative;
    color:  #65d8ff;
    font-weight: 500;
    font-size: 12px;
}

.lang-select .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #F2FFFE 0%, #65D8FF 100%);
    top: 0;
    z-index: 0;
    left: 0;
    width: 0;
    /* transition: .3s width; */
    border-radius: 50px;
}

.lang-select label:nth-child(1) .bg {
    right: 0;
    left: auto;
}

.lang-select label:nth-child(2) .bg {
    left: 0;
}

.lang-select [type="radio"]:checked+.bg {
    width: 100%;
}

.lang-select [type="radio"]:checked~span {
    color: #003246;
   
}

/* -------------- */

.btn-whiteBg {
    height: 46px;
    min-width: 154px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    margin: 0px 12px;
    cursor: pointer;
    background: url(../img/iqube-btn.png) no-repeat;
    background-size: 100% 100%;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px 10px;
}

.btn-whiteBg img {
    width: 30px;
}

.btn-whiteBg .actionBtn {
    margin-left: 8px;
    font-size: 14px;
    font-weight: 400;
}

#renderCanvas {
    width: 100%;
    height: 100vh;
    touch-action: none;
}

#footerMain {
    position: fixed;
    padding: 5px 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

#footerMain .btnWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan, #5FFFF5);
    font-size: 14px;
    text-transform: uppercase;
}

#footerMain .btnWrap #langMoreInfo {
    margin-right: 10px;
}

#footerMain #more-info {
    position: absolute;
    right: 0px;
    bottom: 120%;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background: linear-gradient(180deg, rgba(0, 136, 178, 0.80) 0%, rgba(0, 9, 21, 0.56) 100%);
    width: auto;
    padding: 10px;
    margin: 0px;
}

#footerChild1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#footerChild2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
    overflow: auto;
    background: url(../img/iqube-tabs-bg.png) no-repeat;
    width: 730px;
    background-size: 100% 100%;
    height: 80px;
    /* margin: 20px auto; */
    margin: 12px auto;
}

.primary-btn {
    padding: 8px;
    border-radius: 2px;
    background-color: rgb(238, 123, 123);
    color: #FFF;
    font-weight: 500;
}

.btnbox,
.footer-secondary-btn-div .colorBoxOuter {
    min-width: 90px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: calc(100% /6 - 4px);
    height: 80px;
    position: relative;
}


.btnbox.active span {
    color: #5FFFF5;
}

.btnbox img {
    max-width: 36px;
    display: block;
    margin: 0 auto;
    pointer-events: none;
}

.btnbox span {
    pointer-events: none;
    display: block;
    color: #fff;
    font-weight: 200;
    margin-top: 4px;
    /* font-size:  14px; */
    font-size: 12px;
    line-height: 17px;
    text-align: center;
}

.btnbox.invisible {
    display: none;
}

/* .btnbox.btnboxLight {
    background-size: 100%;
    padding: 5px;
    position: relative;
} */

.btnbox.btnboxLight.active {
    background-size: 100%;
}

.btnImgCss {
    height: auto;
    width: 100%;
    margin: 0 auto;
}

.btnbox.colorBox {
    background: red;
    height: 30px;
    min-width: 30px;
    max-width: 30px;
    border: 1px solid #fff;
    position: relative;
    border-radius: 50%;
    margin-bottom: 12px;
}

.colorBoxOuter span {
    pointer-events: none;
    display: block;
    color: #fff;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    text-align: center;
}

.colorBoxOuter.active span {
    color: #5FFFF5;
}

.colorBoxOuter.active .colorBox {
    background: url(../img/Iqube_Icon_Check.svg) no-repeat center center;
}


.divVisibility {
    visibility: hidden;
}



/* The Modal (background) */
/*
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}
*/

/* Modal Content */
.modal-content {
    z-index:1;
    width: 100%;
    max-width: 351px;
    /* background: #FFFFFF; */
    border: 1px solid #5FFFF5;
    overflow: hidden;
    border-radius: 8px;
    position: absolute;
    /* top: 58%; */
    top: 45%;
    left: 20%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.18);
    animation: fadeIn 2s ease;
}

/* modal animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background: url(../img/iqubeModalHeader.png) no-repeat; */
    background-image: linear-gradient(180deg, #0088B2 0%, #002B65 100%);
    background-size: 100% 100%;
    padding: 15px;
    /* border-bottom: 1px solid #5FFFF5; */
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, rgba(95, 255, 245, 0), rgba(95, 255, 245, 1), rgba(95, 255, 245, 0));
    border-image-slice: 1;
}

.modal-header h3 {
    margin: 0px;
    color: var(--cyan, #5FFFF5);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
}

.modal-header .sound {
    display: block;
    height: 25px;
    width: 25px;
    background-size: 100%;
}

.modal-body {
    padding: 15px;
    background-color: #002F52;
    opacity: 0.7;
    /* background: url(../img/iqubeModalBody.png) no-repeat; */
    /* background-image: linear-gradient(180deg, #002F52 0%, #002F52 100%); */
    background-size: 100% 100%;
}

.modal-body h4 {
    font-weight: 400;
    font-size: 16px;
    margin-top: 0;
    text-align: center;
    color: #AAAAAA;

}


.modal-body p {
    margin-top: 0px;
    text-align: left;
    overflow: hidden;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}

.modal-body .gifImg {
    width: 100%;
}

.modal-footer {
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-footer .btns {
    border-radius: 3px;
    height: 38px;
    transform: skew(-12deg);
    border: none;
    min-width: 120px;
    border: 1px solid #fff;
    font-weight: 700;
    font-size: 16px;
    margin-right: 12px;
    cursor: pointer;
}

.modal-footer .btns:hover,
.modal-footer .btns:focus {
    box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .5);
}

.modal-footer .btns span {
    transform: skew(12deg);
    display: block;
}

.modal-footer .btns.whiteBtn {
    background: #FFFFFF;
    color: #183883;
}

.modal-footer .btns.trnsBtn {
    color: #fff;
    background: transparent;
}

/* The Close Button */

.scrollNum {
    display: flex;
    justify-content: center;
}

.numCol {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.numCol:after {
    content: '';
    width: 20px;
    position: absolute;
    height: 100%;
    background: #444;
    display: block;
    z-index: 1;
    right: 20px;
    top: 0;
    border-radius: 0 8px 8px 0;
}

.scrollNum ul {
    width: 100px;
    height: 180px;
    color: #fff;
    margin: 0 20px;
    padding: 0;
    list-style: none;
    text-align: center;
    overflow: auto;
    background: #444444;
    border-radius: 8px;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
}

.scrollNum ul::-webkit-scrollbar {
    display: none;
}

.scrollNum ul li {
    height: 61px;
    font-size: 50px;
    color: #4d4b4b;
    font-weight: 800;
    padding-left: 6px;
    -webkit-user-select: none;
    user-select: none;
}

.scrollNum ul li.active {
    color: #fff
}

.close {
    background: url(../img/Icon_Cross_iQube.svg) no-repeat center center;
    display: block;
    height: 18px;
    width: 18px;
    background-size: 100%;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.menu {
    height: 40px;
    width: 40px;
    background: url(../img/Iqube_Icon_Menu.svg) no-repeat center center;
    background-size: 100%;
    border: 1px solid #7E9DE7;
    border-radius: 4px;
    display: none;
}

.d-outer {
    max-width: 195px;
    margin: 0 auto;
    padding: 55px 40px;
    background-size: 100%;
}

.d-outer img {
    max-width: 100%;
}

.w-100 {
    width: 100%;
}

.cusltrBtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 195px;
    margin: 0 auto;
    position: relative;
    top: -50px;
}

.cusltrBtn .actionBtnCol {
    width: 128px;
    height: 78px;
    position: relative;

}

.cusltrBtn .actionBtnCol .up,
.cusltrBtn .actionBtnCol .down {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    border: none;
    height: 43px;
    width: 47px;
    padding: 0;
    background: none;
    opacity: 0;
}

.cusltrBtn .actionBtnCol .up {
    top: 0;
}

.cusltrBtn .actionBtnCol .up:hover {
    opacity: 1;
}

.cusltrBtn .actionBtnCol .down {
    bottom: 0;
}

.cusltrBtn .actionBtnCol .down:hover {
    opacity: 1;
}

.toggle-switch {
    margin: 0;
}

.toggle-switch {
    width: 10px;
    position: relative;
}


.switch-vertical {

    width: 36px;
}

.switch-vertical img {
    max-width: 100%;
}

.switch-vertical input {
    height: 100%;
    width: 60px;
    right: 0;
    margin: 0;
}

.switch-vertical label {
    font-size: 15px;
    line-height: 30px;
    display: block;
    width: 80px;
    height: 50%;
    margin: 0;
    text-align: left;
    padding-left: 12px;
}

.switch-vertical .toggle-outside {
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    width: 23px;
    height: 100%;
    right: 0;
    top: 0;
}

.switch-vertical .toggle-inside {
    height: 17px;
    left: 3px;
    top: 3px;
    width: 17px;
}

.switch-vertical input:checked~.toggle-outside .toggle-inside {
    top: 3px;
}

.switch-vertical input~input:checked~.toggle-outside .toggle-inside {
    top: 40px;
}

.footer-color-wrap {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.footer-secondary-btn-div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0 auto;
    background: url(../img/iqube-tabs-bg.png) no-repeat;
    background-size: 100% 100%;
    width: auto;
    max-width: 665px;
}

.footer-secondary-btn-div .colorBoxOuter:not(:last-child):after,
.btnbox:not(:last-child):after,
.btnbox.btnboxLight:not(:last-child):after {
    content: "";
    background: url(../img/iqube-tab-line.png);
    top: 14%;
    right: 0px;
    position: absolute;
    background-size: cover;
    width: 1px;
    height: 70%;
    background-repeat: no-repeat;
}

.collapse {
    display: none;
}

.colorPanel {
    display: flex;
    justify-content: space-between;

}

.btn-whiteBg .btnWrap img {
    width: 14px;
}

@media all and (max-width:991px) {
    .btnGroup .btn-whiteBg {
        min-width: 142px;
        margin: 0px 4px
    }
}

@media all and (max-width:768px) {
    #footerMain .btn-whiteBg {
        bottom: 170px;
    }

    .modal-content {
        transform: translate(-40%, -55%);
    }
}

@media all and (max-width:680px) {

    #footerMain {
        bottom: 47px;
        background: linear-gradient(180deg, rgba(0, 95, 125, 0.75) 10%, rgba(0, 25, 63, 0.75) 90%);
        border-radius: 20px 20px 0px 0px;
        border-top: 2px solid #5FFFF5;
        padding-bottom: 20px;
        padding-right: 5px;
        padding-left: 5px;
    }

    .footer-secondary-btn-div {
        background: none;
        justify-content: center;
        width: auto;
        border-bottom: 2px solid #065b7d;
    }

    #footerChild2 .btnbox,
    .footer-secondary-btn-div .colorBoxOuter {
        flex: 0 0 110px;
    }

    #headerBox {
        flex-wrap: wrap;
        padding: 12px;
        background: url(../img/iqube-mobile-header.png) no-repeat;
        background-size: 100% 100%;
    }

    .btnGroup {
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: url(../img/iqube-footer-frame.png) no-repeat;
        background-size: 100% 100%;
        padding: 18px 0;
        height: 62px;
    }

    .btnGroup .btn-whiteBg {
        background: none;
        height: auto;
        padding: 0px;
        margin: 0px;
        width: calc(100% / 3);
        min-width: auto;
    }

    .actionBtn {
        margin-left: 4px;
        font-size: 14px;
        font-weight: 500;
        text-transform: capitalize;
    }

    #footerMain #more-info {
        right: 0px;
        bottom: 120%;
    }

    .modal-content {
        width: 100%;
        max-width: 92%;
        background: none;
        position: absolute;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.18);
        border-radius: 8px;
        border: 1px solid var(--cyan, #5FFFF5);
        margin: 0 auto;
        top: auto;
        bottom: 70px;
        left: 0;
        right: 0px;
        overflow: hidden;
        transform: inherit;
    }
}

/* svg path {
    fill: #fff;
} */

.btnbox.active svg path {
    fill: #5FFFF5;
}

@media all and (max-width:600px) {
    .colorPanel {
        justify-content: flex-start;
        overflow: auto;
    }
}

@media all and (max-width:580px) {
    #footerChild2 {
        justify-content: flex-start;
        margin: 0px;
        width: 100%;
        background: no-repeat;
    }

    .footer-secondary-btn-div {
        justify-content: center;
    }

    .footer-secondary-btn-div.m-div {
        justify-content: flex-start;
    }
}

@media all and (max-width:480px) {
    #footerChild1 {
        overflow: auto;
        width: auto;
        max-width: 100%;
        margin: 0 8px;
        justify-content: flex-start;
    }
}

@media (max-width: 380px) {
    .flexHeadWrap {
        padding: 15px 5px 15px 15px
    }

    .lang-select {
        margin-right: 5px
    }
}