*{
    margin: 0;
    padding: 0;
}
body{
    background-color:rgb(168, 214, 214);
}
.all{
    background-color:rgb(168, 214, 214);
    position:fixed;
    width:100%;
    height:100%;
    display: flex;
    align-items: stretch;
    animation-name: all;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-timing-function:ease-in-out;
    transition: 0.5s linear;
}
@keyframes all {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
.left{
    background: linear-gradient(to left,#ffffff08,13%,rgb(255 255 255 / 23%));
    position:absolute;
    left:0px;
    width:400px;
    height:100%;
    transition: 1s;
}
.left-top{
    position:relative;
    width:100%;
    height:70px;
}
.p-m{
    font-size:15px;
    color:white;
    position:relative;
    top:0px;
    left:3px;
}
.left-top-title-div{
    position:absolute;
    width:calc(100% - 40px);
    text-align:center;
    height:36px;
    bottom:0px;
    left:32px;
}
.left-top-title{
    position:relative;
    font-size: 30px;
    font-weight:bold;
    color:white;
    bottom:0px;
    cursor: pointer;
    text-decoration:none;
}
.left-top-bn-div{
    position:absolute;
    width:30px;
    text-align:center;
    height:auto;
    top:2px;
    right:0px;
}
.left-no-bn{
    position: relative;
    top:0px;
    right: 0px;
    border:none;
    width: 30px;
    height: 30px;
    background-color:rgb(255 0 0 / 0%);   
    color:rgb(255 255 255);
    font-size: 25px;
    transition: 0.2s linear;
    cursor: pointer; 
    display:none;
}
.left-no-bn:hover{
    color:rgb(255 220 205);
}
.left-ys-bn{
    position: relative;
    top:0px;
    left: 0px;
    border:none;
    width: 30px;
    height: 30px;
    background-color:rgb(243 243 243 / 37%);   
    color:rgb(255 255 255);
    font-size: 25px;
    border-radius: 0px 1px 5px 1px;
    transition: 0.2s linear;
    display:none;
    cursor: pointer; 
}
.left-ys-bn:hover{
    color: rgb(168, 214, 214);
}
.left-no-bn-c{
    position: relative;
    top:0px;
    right: 0px;
    border:none;
    width: 30px;
    height: 30px;
    background-color:rgb(255 0 0 / 0%);   
    color:rgb(255 255 255);
    font-size: 25px;
    transition: 0.2s linear;
    cursor: pointer; 
}
.left-no-bn-c:hover{
    color:rgb(255 220 205);
}
.left-ys-bn-c{
    z-index: 20;
    position: absolute;
    top:0px;
    left: 0px;
    border:none;
    width: 30px;
    height: 30px;
    background-color:rgb(203 203 203 / 50%);   
    color:rgb(255 255 255);
    font-size: 25px;
    border-radius: 0px 1px 5px 1px;
    transition: 0.2s linear;
    visibility:visible;
    cursor: pointer; 
    display: none;
}
.left-ys-bn-c:hover{
    color: rgb(182 229 229);
    background-color:rgba(255, 255, 255, 1);   
    box-shadow: 0px 0px 10px rgb(250 204 173 / 55%);
}
#left.active .left-ys-bn-c{
    display: block;
}
#left.active .left{
    margin-left: -100%;
}
#left.active .right{
left: 0px;
width:100%;
}
#left.active .right-iframe-div .right-iframe{
        width:100%;
        height: 100%;
        border-radius: 0px;
}
#left.active .right-iframe-iframe{
        border-radius: 0px;     
}
#left.active .FullRightDiv{
    border-radius: 0px;
}
#left.active .rightiframeDiv{
    height: calc(100% - 32px);
}
#left.active .FullRightDiv .rightfulloff{
    display: inline;
}
#left.active .FullRightDiv .rightfullopen{
    display: none;
}
#left.active .left-ys-bn{
    display:none;
}
#left.active .mouse{
    border-radius: 0px;
}
#left.active .FullRightDiv .rightoffiframe{
    display: none;
}
.iframe-r-c{
    position: relative;
    top:0px;
    right: 0px;
    border:none;
    width: 30px;
    height: 30px;
    background-color:rgba(212, 0, 0, 0);   
    color:rgb(255 255 255);
    font-size: 25px;
    transition: 0.2s linear;
    cursor: pointer; 
    display: none;
}
.iframe-r-c:hover{
    color:rgb(253 231 194);
    animation-name: iframe-r;
    animation-duration: 4s;
    animation-timing-function: initial;
    animation-iteration-count: infinite;
}
@keyframes iframe-r {
    from {
        transform: rotate(-360deg);
    }
    50% {
        transform: rotate(-150deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.left-lu{
    position:relative;
    width:100%;
    height:calc(100% - 70px);
    display:flex;
    list-style-type:none;
}
.left-left{
    position:relative;
    left:0px;
    top:20px;
    width:25px;
    height:calc(100% - 70px);
}
.left-right{
    position:relative;
    right:0px;
    width:100%;
    height: calc(100% - 30px); 
}
.left-right .left-right-lu-div{
    position:relative;
    background-color:#ffffffa8;
    width: calc(100% - 15px);
    top:5px;
    left:7px;
    height:  100%;
    display: flex;
    justify-content: center;   
    border-radius: 20px;
    overflow:hidden;
}
.right{
    background: linear-gradient(to right,#ffffff08,5%,rgb(255 255 255 / 23%));
    position:absolute;
    left:400px;
    width:calc(100% - 400px);
    height:100%;
    transition: 1s;
}
.right-iframe-none{
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: #ffffff00;
    font-weight: bold;
    font-size: 40px;
    border-radius: 0px 0px 20px 20px;
}
.right-iframe-div{
    position: relative;
    width: 100%;
    height:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s;
}
.right-iframe-div .right-iframe{
    position: relative;
    width:calc(100% - 50px);
    height:calc(100% - 50px);
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    transition: 1s;
    overflow: hidden;
    box-shadow: 0px 0px 20px rgb(255 251 248);
}
.right-iframe-iframe{
    width: 100%;
    height:100%;
    border:none;  
    border-radius: 0px 0px 20px 20px;
    transition: 1s;
}
.ReNewbn{
    position: absolute;
    bottom: 0px;
    color: rgb(0, 0, 0);
    font-size:15px;
    text-decoration:none;
    cursor: pointer;
}
.sharebnn{
    cursor: pointer;
    border-style:none;
    font-size:20px;
    position:absolute;
    background-color:#ffffff00;
    color:white;
    bottom:0px;
    left:0px;
    width:50px;
    height:50px;
    padding-right:20px;
    padding-top:20px;
    text-align:center;
    transition: 0.3s linear;
    font-weight: 9;
    border-radius: 0px 50px 0px 0px;
}
.sharebnn:hover{
    z-index: 50;
    background-color:#ffffff;
    padding-right:10px;
    padding-top:10px;
    color:rgb(255 154 0);
    box-shadow: 0px 0px 20px rgb(255 202 132 / 77%);
}
.lu-clock{
    text-align: center;
    position: relative;
    z-index: 0;
    border-style:none;
    color: rgb(255, 255, 255);
    background-color: #ffffff00;
    font-size: 20px;
    font-weight: 5;
    width: 25px;
    height: 30px;
    transition: 0.3s linear;
    border-radius: 0px 30px 30px 0px;
    padding-left: 5px;
    cursor: pointer;
    overflow: hidden;
}
.lu-clock-p{
    font-weight: 5;
    display:none;
    font-size: 0px;
    transition: 0s linear;
    animation: lu-p-on 0.1s forwards;
}
.lu-clock:hover{
    text-align: center;
    position: relative;
    z-index: 20;
    border-style:none;
    color: black;
    background-color: #ffffff;
    font-size: 20px;
    font-weight: 5;
    width: 130px;
    height: 30px;
    border-radius: 0px 30px 30px 0px;
    box-shadow: 0px 0px 5px rgba(255, 202, 132, 0.795);
    padding-left: 0px;
}
.lu-clock:hover .lu-clock-p{
    display: inline;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
}
.lu-set{
    text-align: center;
    position: relative;
    z-index: 0;
    border-style:none;
    color: rgb(255, 255, 255);
    background-color: #ffffff00;
    font-size: 20px;
    font-weight: 5;
    width: 25px;
    height: 30px;
    transition: 0.3s linear;
    border-radius: 0px 30px 30px 0px;
    padding-left: 5px;
    cursor: pointer;
    overflow: hidden;
}
.lu-set-p{
    font-weight: 5;
    display:none;
    font-size: 0px;
    transition: 0s linear;
    animation: lu-p-on 0.1s forwards;
}
.lu-set:hover{
    text-align: center;
    position: relative;
    z-index: 20;
    border-style:none;
    color: black;
    background-color: #ffffff;
    font-size: 20px;
    font-weight: 5;
    width: 130px;
    height: 30px;
    border-radius: 0px 30px 30px 0px;
    box-shadow: 0px 0px 5px rgba(255, 202, 132, 0.795);
    padding-left: 0px;
}
.lu-set:hover .lu-set-p{
    display: inline;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
}
@keyframes lu-p-on {
    from{
        font-size: 15px;
    }
    to{
        font-size: 20px;
    }
}
.left-right-lu{
    width: 100%;
    overflow: auto;
}
.left-right-lu::-webkit-scrollbar{
    background-color:#ffffff4f;
    display:none;
}
.left-right-lu:hover::-webkit-scrollbar{
    display:block;
}
.menu-list ul a:hover i{
    animation: rotation 0.5s;
}
.menu-list ul li.first-menu ul{
    display:none;
}
@keyframes rotation {
    from {
        transform: rotate(-360deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.menu-list ul{
    list-style: none;
    padding:0;
    margin:0 auto;
}

.menu-list ul li.first-menu{
    overflow: hidden;
}
.menu-list ul li a{
    display:block;
    text-decoration:none;
}
.menu-list ul li.first-menu.active>a{
    vertical-align: middle;
}
ul ul li a {
    background-color: rgba(255, 255, 255, 0.25);
    font-size: 20px;
    cursor: pointer; 
}
 ul li a {
    padding: 10px;
    font-size: 20px;
    display: block;
    text-decoration: none;
    color: rgb(0, 0, 0);
    transition: 0.2s linear;
    cursor: pointer; 
}
 ul li a:hover {
    border-radius: 20px;
    color: rgb(142 198 198 / 89%);
    background: rgb(255, 255, 255);
    transition: 0.3s linear;
    font-size:23px;
    transition: ease-in-out 0.4s;
}
li a::after {
    content: ' ';
    background: #ffffff00;
    display: block;
    height: 1px;
    width: 0%;
    transition: width 0.5s ease-in-out;
}
li a:hover::after {
    background: #000000;
    width: 100%;
}
.rightiframeDiv{
    position:relative;
    width: 100%;
    height: calc(100% - 32px);
    transition: 1s;
}
.Fbn{
    position:absolute;
    top: 2px;
    right: 2px;
    background-color: rgba(0, 0, 0, 0);
    color: white;
    border: none;
    font-size: 30px;
    padding-top: 0px;
    padding-right: 3px;
    padding-left:3px;
    display: none;
    text-shadow: 0px 0px 10px rgb(186 186 186);
    cursor: pointer; 
}
.mouse{
    position: absolute;
    width: 100%;
    height: calc(100% - 32px);
    background-color: #ffffff00;
    border-radius: 0px 0px 20px 20px;
    z-index: 1;
    display: none;
}
#mouse.active .mouse{
    display: inline;
}
.SettingLP{
    color: rgb(0, 0, 0);
    font-size: 20px;
    position: relative;
}
.SettingFbn{
    text-align: center;
    border-width: 2px;
    border-color: #fec3b2d6;
    border-style:solid;
    width: auto;
    height: 24px;
    position:relative;
    top:-3px;
    left:5px;
    border-radius: 50px;
    cursor: pointer;
    color: rgb(0, 0, 0);
    background-color: rgba(255, 255, 255,1);
    outline:none;
}
.SettingifP{
    color: rgb(0, 0, 0);
    font-size: 20px;
}
.SettingifBnA{
    position: absolute;
    width: 50px;
    height: 25px;
    text-align: center;
    background-color: rgb(125, 125, 125);
    border-radius: 100px;
    transition: 0.5s ease;
    cursor: pointer;
    margin-left: 5px;
    margin-top: 3px;
}
.SettingifBnB{
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 100px;
    background-color: rgb(255, 255, 255);
    top:2.5px;
    left:6%;
    transition: 0.5s ease;
}
.SettingL{
    position: relative;
    width: 250px;
    height: 20px;
    border-radius: 100px;
    background-color: rgb(255 255 255 / 0%);
    transition: 0.5s linear;
    top: 2px;
    left: 10px;
}
.Settingif{
    position: relative;
    width: 250px;
    height: 20px;
    background-color: rgb(255 255 255 / 0%);
    transition: 0.5s linear;
    top: 15px;
    left: 10px;
}
.SettingClearCookiesbnDiv{
    width: 100%;
    height: auto;
    position: relative;
    background-color: rgb(255 255 255 / 0%);
    display: flex;
    justify-content: center;    
    align-items: center;     
}
.SettingClearCookiesbn{
    position: relative;
    width:auto;
    height: auto;
    padding:5px;
    background-color: #fd999b;
    font-size:15px;
    color:#ffffff;
    cursor: pointer;
    border-radius:10px;
    border-color:#f8645c;
    border-style:solid;
    border-width:2px;
    text-align: center;
}
.SettingColorInput{
    width:25px;
    height:25px;
    border-radius: 20%;
    border-style:solid;
    border-width: 2px;
    border-color: #7e7e7e;
    background-color:rgba(217, 217, 217, 0.5);
    cursor:pointer;
}
.SettingColor{
    display: none;
}
.left-right-lu-set{
    width: 100%;
    overflow: auto;
    border-radius: 20px;
    display:none;
    position: relative;
    font-size:20px;
    padding-top:10px;
    padding-right:10px;
    padding-left:10px;
    padding-bottom:20px;
}
#right.active{
    width:100%;
}
#right.active .right-iframe-div .right-iframe{
    border-radius: 0px;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
}
#right.active .right-iframe-div{
    top:0px;
    left:0px;
    padding:0px;
    border-radius: 0px;
    width:100%;
    height:100%;
}
#right.active .right-iframe-iframe{
    border-radius: 0px;   
    width: 100%;
    height:calc(100% - 0.1px);
}
#right.active .left-ys-bn{
    display:none;
}
#right.active .left-ys-bn-c{
    display:none;
}
#right.active .FullRightDiv{
    margin-top:-31.9px;
    background-color:#ffffff00;
    z-index: 2;
    border-radius: 0px;
}
#right.active .FullRightDiv:hover{
    margin-top:0px;
    background-color: rgba(166, 214, 214, 0.95);
}
#right.active .FullRightDiv .rightfulloff{
    display: none;
}
#right.active .FullRightDiv .rightfullopen{
    display: none;
}
#right.active .FullRightDiv .rightoffiframe{
    display: none;
}
#right.active .rightiframeDiv{
    height: 100%;
}
#right.active .mouse{
    border-radius: 0px;
    height: 100%;
}
#right.active .FullRightDiv .fulloff{
    display: inline;
}
#right.active .FullRightDivBottom{
    display: flex;
    z-index:2;
}
.ifd{
    border-radius: 20px;
}
.D{
   color:rgba(255,255,255,0.5);
   text-align: center;
   border-style:none;
   background-color: #ffffff00;
   font-size: 20px;
   font-weight: 5;
   width: 25px;
   height: 30px;
   padding-left: 5px;
   overflow: hidden;
}
.FullRightDiv{
    position: relative;
    top:0px;
    left:0px;
    width:100%;
    height:32px;
    background-color: rgba(195, 195, 195, 0.2);
    border-radius:20px 20px 0px 0px;
    transition:1s;
    text-align: right;
    display: flex;
    overflow: hidden;
}
.FullRightDiv button{
    position:relative;
    background-color: rgba(225, 247, 247, 0);
    color: white;
    border: none;
    font-size: 25px;
    cursor: pointer; 
    width: 35px;
    height: 100%;
    text-align: center;
    padding-top:2px;
    transition:0.3s;    
    top: 0px;
}
.FullRightDiv button:hover{
    background-color: rgba(225, 247, 247, 0.7);
    box-shadow:0px 0px 15px #d1d1d1a8;
}
.FullRightDiv .rightfulloff{
    display: none;
}
.FullRightDiv .rightfullopen{
    display: inline;
    padding-right:5px;
    padding-left:5px;
}
.FullRightDiv .fulloff{
    display: none;
}
.FullRightDivBottom{
    position: absolute;
    bottom: 0px;
    width:100%;
    height:10px;
    overflow: hidden;
    transition: 0.2s linear;
    display: flex;
    justify-content: center;    
    align-items: center; 
    display: none;
}
.FullRightDivBottom .FullRightBottom{
    position: relative;
    width:100px;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
    box-shadow:0px 0px 15px #aeaeaeb8;
    border-radius:20px;
    transition: 0.2s linear;
    height:50px;
    display:none;
    justify-content: center;    
    align-items: center; 
}
.FullRightDivBottom .FullRightBottom button{
    position:relative;
    background-color: rgba(0, 0, 0, 0);
    color: rgb(0, 0, 0);
    border: none;
    font-size: 25px;
    cursor: pointer; 
    width: 35px;
    height: 100%;
    text-align: center;
    padding-top:2px;
    transition:0.3s;    
    top: 0px;
}
.FullRightDivBottom .FullRightBottom button:hover{
    background-color: rgb(0, 0, 0);
    color:rgb(255, 255, 255);
    box-shadow:0px 0px 15px #d1d1d1a8;
}
.FullRightDivBottom:hover{
    height:80px;
}
.FullRightDivBottom:hover .FullRightBottom{
    display:flex;
}
.iframeURL{
    position: relative;
    height:100%;
    width: 100%;
    background: linear-gradient(to left,#ffffff00,70%,rgba(255, 255, 255, 0.2));
    text-align:start;
    padding-left:10px;
    padding-top:7px;
    color: rgb(255, 255, 255);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#mouse.active .FullRightDiv .righttouch{
    color: #757575;
}
#mouse.active .FullRightDivBottom .FullRightBottom .righttouch{
    color: #757575;
}
#fullDiv.active .left{
    margin-left: -100%;
}
#fullDiv.active .right{
    left: 0px;
}
#FullRightDiv.active{
    height:0px;
}
.ManualUpdate{
    margin-left:5px;
    border-style:solid;
    font-size:15px;
    padding-left:5px;
    padding-right:5px;
    padding-top:2px;
    padding-bottom:2px;
    border-width:2px;
    background-color: rgb(255 255 255 / 0%);
    border-color:rgb(54 211 40 / 96%);
    border-radius:10px;
    color:black;
    cursor:pointer;
    display: none;
}
.rightbn{
    position:absolute;
    width:35px;
    height:auto;
    background-color:#ffffff00;
    border-radius:0px 0px 5px 0px;
    overflow:hidden;
    z-index:1;
    top:0px;
    left:0px;
    display:none;
    transition: 0.2s linear;
}
.setbn{
    position: absolute;
    right: 0px;
    bottom:0px;
    width: 40px;
    height:40px;
    color: rgb(255, 255, 255);
    background-color: rgba(0, 0, 0, 0);
    font-size:20px;
    border-style: none;
    text-align:center;
    border-radius: 100%;
    cursor: pointer;
    transition: 0.2s linear;
    text-shadow: 0px 0px 10px rgba(50, 50, 50, 0.5);
    display: none;
}
.setbn p{
display:none;
font-size: 0px;
transition: 0s linear;
animation: lu-p-on 0.1s forwards;
margin-left:1px;
}
.setbn:hover{
 border-radius: 15px 0px 0px 0px;
 color: rgb(0 0 0);
 background-color: rgb(255 255 255);
 text-shadow: 0px 0px 0px rgb(186 186 186);
 box-shadow: 0px 0px 20px rgb(237 199 216 / 95%);
 width: 80px;
 right: 0px;
 bottom:0px;
}
.setbn:hover i{
    animation-name: SbnH;
    animation-timing-function: linear;
    animation-duration:8s;
    animation-iteration-count: infinite;
}
@keyframes SbnH{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}
.setbn:hover p{
display: inline;
animation-delay: 0.2s;
animation-fill-mode: forwards;
}
@keyframes lu-p-on {
from{
    font-size: 15px;
}
to{
    font-size: 20px;
}
}
.setDiv{
position: absolute;
right: 35px;
bottom:35px;
width: 400px;
height:400px;
color: rgb(0, 0,0);
background-color: rgba(255, 255, 255, 1);
border-radius: 30px 30px 30px 30px;
box-shadow: 0px 0px 20px rgb(215 176 191 / 90%);
text-align: center;
display:none;
animation-name: SetDiv;
animation-timing-function:ease-in-out;
animation-duration:0.2s;
animation-iteration-count: 1;
overflow: auto;
}
@keyframes SetDiv{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
.SetbnXbn{
 position:absolute;
 top:5px;
 right:2px;
 color: rgb(0, 0, 0);
 border:none;   
 background-color:rgb(0 0 0 / 0%);
 margin-right:5px;
 width:25px;
 height:25px;
 text-align:center;
 border-radius:15px;
 font-size:20px;
 cursor: pointer;
 transition: 0.2s linear;
}
.SetbnXbn:hover{
 color: rgb(204 17 17);
 box-shadow:0px 0px 5px rgb(189 51 20 / 91%);   
 border:1px solid rgb(255 248 237 / 15%);   
}
.Seth1{
font-size:25px;
}
.all-P1-P-T-div{
height: 1px;
top:0px;
background-color: rgb(0, 0, 0);
}
.all-P1-P-T-P{
background-color: rgb(255, 255, 255);
color: rgb(0, 0, 0);
width:40px;
position: relative;
top:-10px;
padding:0px 5px 0px 5px;
}
.SetT-div{
position: relative;
width: 100%;
top:25px;
}
.SetTt-div{
position: relative;
width: 100%;
top:25px;
display: none;
}
.SetTbndiv{
top:15px;
position: relative;
width: 100%;
text-align: center;
display: flex;
justify-content: center;    
align-items: center; 
overflow:hidden;
height:100px;
}
.SetTtbndiv{
top:15px;
position: relative;
width: 100%;
text-align: center;
display: flex;
justify-content: center;    
align-items: center; 
overflow:hidden;
height:65px;
}
.SetT{
position: relative;
width: 100%;
height: 100%;
text-align: center;
overflow: auto;
}
.SetT button{
background-color: #fff1fa3d;
position: relative;
margin: 5px;
text-align: center;
border-style:solid;
border-width:2px;
border-color:#ffcaec70;
border-radius:15px;
transition: 0.2s linear;
cursor: pointer;
font-size:15px;
padding-right:10px;
padding-left:10px;
color: #000000;
}
.SetT button:hover{
box-shadow:0px 0px 15px #eeacd5b0;   
background-color: rgb(255 255 255 / 0%);
border-color:#ffcaec00;
}
.SetO-div{
position:relative;
top:55px;
width: 100%;
}
.O{
width:70px;
}
.O-div{
position:relative;
width:100%;
text-align:start;
top:10px;
font-size:20px;
}
.O-div p{
margin-bottom:5px;
padding-left:5px;
}
.O-div input{
width:25px;
height:25px;
border-radius: 20%;
border-style:solid;
border-width: 2px;
border-color: #7e7e7e;
background-color:rgba(217, 217, 217, 0.5);
cursor:pointer;
}
.o5i{
    position:relative;
    width:30px;
    height:30px;
    background-color:#ffffff00;
    border:solid 2px black;
    border-radius:100%;
    font-size:20px;
    cursor:pointer;
    color:black;
    transition:0.2s linear;
    margin-right:5px;
    margin-left:5px;
}
.o5i:hover{
    background-color:#93aeff;
    border:0px;
    border-radius:100%;
    font-size:20px;
    cursor:pointer;
    color:white;
}
.o5iDiv{
    position:relative;
    right:0px;
    display:flex;
    justify-content: center;    
    align-items: center;  
    height:50px;
    background-color: rgba(255, 255, 255, 0.25);
}
.o5Div{
    width:100%;
    display:flex;
}
.o5Div a{
    width:100%;
}
.i-BackGround{
    position: absolute;
    width: 100%;
    height:100%;
    background-color: rgba(100, 100, 100, 0.3);
    display: flex;
    justify-content: center;    
    align-items: center;   
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 5000;
    animation-name: i-BackGround;
    animation-timing-function:ease-in-out;
    animation-duration:2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards; 
    display:none;
}
.i-Div{
    position: relative;
    width: 500px;
    height: 500px;
    background-color: white;
    border-radius:20px;
    box-shadow: 0px 0px 15px rgb(165 165 165 / 90%);
    text-align: center;
    font-size:15px;
    animation-name: i-Div;
    animation-timing-function:ease-in-out;
    animation-duration:2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards; 
}
.i-C{
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;    
    align-items: center;   
    overflow: hidden;
    font-size:30px
}
.i-Div .out{
    width:30px;
    height:30px;
    border-radius:100%;
    position:absolute;
    right:2px;
    top:2px;
    background-color:#ffffff00;
    border:none;
    font-size:20px;
    color:black;
    transition:0.2s linear;
    cursor:pointer;
}
.i-Div .out:hover{
    color:red;
}
@keyframes i-BackGround{
    from{
        opacity: 0;
       }
       to{
        opacity: 1;
       }
}
@keyframes i-BackGroundexit{
    from{
     opacity:1;
    }
    to{
     opacity: 0; 
     display: none;
    }
}
@keyframes i-Div{
    from{
        opacity: 0;
        margin-top: -100%;
       }
       50%{
        margin-top: 10%;
       }
       to{
        opacity: 1;
        margin-top: 0%;
       }
}
@keyframes i-Divexit{
    from{
     opacity:1;
    }
    50%{
    margin-top: 5%;
    }
    to{
     opacity: 0; 
     margin-top: -100%;
     display: none;
    }
}
@media (max-width:1000px){
    .sharebnn{
        padding-top:20px;
        padding-right:20px;
    }
    .sharebnn:hover{
        padding-top:2%;
        padding-right:2%;
    }
    .left{
        z-index: 20;
        position:fixed;
        left:0px;
        width:100%;
        height:100%;
    }
    .right{
        background-color: #ffffff36;
        position:absolute;
        left:0px;
        top:0px;
        width:100%;
        height:100%;
    }
    .right-iframe-div{
        position: relative;
        width: 100%;
        height:100%;
        display: flex;
        justify-content: center;  
        padding-bottom: 0px; 
    }
    .right-iframe-div .right-iframe{
        position: relative;
        width:100%;
        height: 100%;
        top:0px;
        background-color: #e7ffff85;
        border-radius: 0px;
    }
    .right-iframe-iframe{
        width: 100%;
        height: 100%;
        border:none;  
        border-radius: 0px;     
    }
    .left-ys-bn{
        position: relative;
        background-color:rgba(201, 201, 201, 0.589);   
        color:white;
        text-align: center;
        top:0px;
        font-size:30px;
        width: 35px;
        height: 35px;
        display:initial;
        border-radius:0px;
    }
    .left-no-bn{
        font-size:30px;
        width: 35px;
        height: 35px;
        top:-1px;
        right:5px;
        display:block;
    }
    .left-no-bn-c{
        display:none;
    }
    .iframe-r-c{
        position: relative;
        background-color:rgba(201, 201, 201, 0.589);   
        color:white;
        text-align: center;
        top:0px;
        font-size:30px;
        width: 35px;
        height: 35px;
        display:initial;
    }
    .iframe-r-c:hover{
    color:rgb(253 231 194);
    animation-name: none;
    animation-duration: 4s;
    animation-timing-function: initial;
    animation-iteration-count: infinite;
    }
    .left-ys-bn-c{
    display: none;
    }
    #left.active .left{
    margin-left: 0%;
    }
    #left.active .left-ys-bn{
    display:initial;
    }
    #sidebar.active .left{
    margin-left:-100%;
    }
    #left.active .left-ys-bn-c{
    display: none;
    }
    .ifd{
    border-radius: 0px;
    }
    #right.active .left-ys-bn{
    display:none;
    }
    #fullDiv.active .iframe-r-c{
        display: none;
    }
    .FullRightDiv{
        display: none;
    }
    .rightiframeDiv{
        height: 100%;
    }
    #left.active .rightiframeDiv{
        height: 100%;
    }
    .mouse{
        display: none;
    }
    #sidebar.active .rightbn{
        display:initial;
    }
    .left-right .left-right-lu-div{
        width: calc(100% - 38px);
    }
    .left-top-title-div{
    width:calc(100% - 63px);
}
.setDiv{
    width: 98%;
    right: 0px;
    left:1%;
  }
  .i-Div{
    width: 90%;
}
}
@media (max-width:200px){
    .ReNewbn{
    font-size:10px;
    }
}
@media (max-height:500px) {
    .setDiv{
     height:calc(100% - 100px);
   }
 }