@font-face {
  font-family: "Times New Roman";
}

:root { 
  --bg-color: #eee;
  --text-col: #000;
  --bg-clo2: #fff;
  --block-col: #fff;
  --boto: #ddd;
  --comboxtext: #fff;
  --inpt: #fff;
  --btn-bg: #fff;
  --ssilk-color: #0000CF;
  --border: #333;
  --e: #BAFCB0;
  --t: #FEFFB8;
    --w: #FF9494;
}

.dark-theme {
  --bg-color: #0E0E11;
  --text-col: #f0f0f0;
  --block-col: #202022;
  --bg-clo2: #333;
    --boto: #9b9b9c;
    --comboxtext: #9b9b9c;
    --inpt: #333;
    --btn-bg: #333;
    --ssilk-color: #f7f21a;
    --border: #777;
    --e: #094600;
    --t: #C69700;
      --w: #4C0000;
}


body{
background: var(--bg-color);

}



.blockTimBtn{
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 20px;
}

.timBtn{
  position: relative;
  background: #fff;
  margin: 0 25px;
  font-size: calc(14px + (9 + 9 * 0.7) * ((100vw - 320px)/1000));
  padding: 5px 25px;
  border-radius: 20px;
  cursor: pointer;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.52);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.52);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.52);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.block{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 95%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width:700px){
        .block{
          flex-direction: column;
        }
    }
    @media (min-width:1300px){
      .block{
        flex-wrap: nowrap;
      }
    }

.blck{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  width: 100%;
}

.circ{
  position: relative;
  display: block;
  width: 25vw;
  height: 25vw;
  border-radius: 50%;
  background: #ddd;
/*-webkit-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.3);*/
/*-moz-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.3);*/
/*box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.3);*/
}

.text{
  position: relative;
  display: block;
  font-size: calc(18px + (14 + 14 * 0.7) * ((100vw - 320px)/1300));
  color: #777;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  
}


.circText{
  position: absolute;
  width: 24vw;
  height: 24vw;
  border-radius: 50%;
  background: #fff;
  line-height: 24vw;
  text-align: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: calc(28px + (87 + 87 * 0.7) * ((100vw - 320px)/1300));
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
/*  -webkit-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.3) inset;*/
/*-moz-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.3) inset;*/
/*box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.3) inset;*/
}

.obol{
  position: absolute;
  display: block;
  width: 25vw;
  height: 25vw;
  border-radius: 50%;
  transform-origin: center;
  transform: rotate(-90deg);
  
}

.btn{
  position: absolute;
  width: 2vw;
  height: 1vw;
  background: #0f0;
  left: calc(100% - 1.3vw);
  right: 0;
  top: 0;
  opacity: 0.6;
  bottom: 0;
  margin: auto;
  border-radius: 50% 4px 4px 50%;
  cursor: grab;
  border: 1px solid #228B22;
/*-webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.5);*/
/*-moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.5);*/
/*box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.5);*/
touch-action: none;
}



.btn:active{
  cursor: grabbing;
}














