html, body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #fff;
}

a:link, a:visited {
    color: #bdc3c7;
}

.credit {
    position: absolute;
    text-align: center;
    width: 100%;
    padding: 20px 0;
    color: #fff;
}
.mode__img{
    display: none;
    width: 100%;
    height: 100%
}

#left_canvas, #right_canvas {
    float: left;
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
}
.full__screen{
    color: #fff;
    width: 100%;
    height: 100%;
}
.half__screen{
    width: 50% !important;
    height: 100%;
    display: block !important;
}

.control-btn{
    width: 50px;
    height: 50px;
    /* background: red; */
    position: fixed;
    z-index: 2;
    bottom: 45px;
    right: 25px;
    cursor: pointer;
    /* display: none; */
}
.preloader_block{
    background: #fff;
    opacity: 0.9;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: absolute;
    z-index: 2;
    transition: all 0.5s ease;
}
.preloader_block img{
    position: relative;
}
.percent{
    position: absolute;
    margin: 0;
    color: #222;
}
.settings_section{
    width: 0px;
    height: 80%;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    text-align: center;
    position: fixed;
    z-index: 3;
    top: 50px;
    right: 5px;
    overflow: auto;
    transform: translateX(110%);
    -o-transform: translateX(110%);
    -webkit-transform: translateX(110%);
    -ms-transform: translateX(110%);
    transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
}
.color-list-name{
    text-transform: uppercase;
}
.color-list-block{
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: 92%;
    margin: 0;
    padding: 0;
}
.color-list img {
    width: 100%;
}
.color-list p {
    font-size: 14px;
    width: 100%;
    margin: 5px 0px;
    color: #222;
}
.open-settings-section{
    font-family: 'Arial', sans-serif;
    width: 280px;
    transform: translateX(0%);
    -o-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
}
.settings_section .color-list{
    /* display: inline-block; */
    float: left;
    margin: 5px 10px;
    cursor: pointer;
    width: calc(50% - 34px);
    height: 147px;
    overflow: hidden;
    background: #fff;
    border-radius: 5px;
    padding: 5px;
    border: 2px solid transparent;
}
.settings_section .active{
    border: 2px solid #00aeef;
}

.mobile__touchBLock{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    display: none;
    /* user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none; */
}
.close_btn{
    width: 20px;
    height: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    background: url('../img/icon-close.svg') no-repeat center;
    background-size: cover;
    cursor: pointer;
}
.mode__img svg{
    fill: #ffffff;
}
.mode__img svg:hover{
    fill: #222;
}
.hidden{
    display: none;
}
.vision{
    display: block;
}
@media (max-width:736px) and (orientation: portrait){
	.settings_section .color-list {
        width: calc(50% - 34px);
        height: 165px; /* portraite orientation */
    }
    .color-list p {
        font-size: 12px;
    }
    .open-settings-section {
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
    }
    .color-list img {
        width: 100%;
        height: 128px;
        object-fit: contain;
    }
}
@media (max-width:736px) and (orientation: landscape){
    .settings_section .color-list {
        width: calc(25% - 34px);
        height: 170px; /* portraite orientation */
    }
    .color-list p {
        font-size: 12px;
    }
    .open-settings-section {
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
    }
    .color-list img {
        width: 100%;
        height: 128px;
        object-fit: contain;
    }
}