/* reset */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html,
body {
   height: 100%;
   color: #fff;
}

a {
   text-decoration: none;
   color: inherit;
}

ul,
li,
ol {
   list-style: none;
}

body {
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
   /* background-color: #1e1e1e;
   background: url("./img/bg-01.jpg") no-repeat center;
   background-size: cover; */
}

/* body::before {
   content: "";
   display: block;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: #0000009c;
   z-index: -1;
} */

/* common */
/* h1 {
   text-align: center;
   margin-bottom: 30px;
   margin-top: -30px;
} */

.outline {
   outline: 1px solid white;
}

.cursor {
   cursor: pointer;
}

.dp-none {
   display: none !important;
}

.dp-block {
   display: block !important;
}

.dp-flex {
   display: flex !important;
}

.pos-rel {
   position: relative;
}

.modal {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   position: fixed;
   top: 0;
   left: 0;
   bottom: 0;
   right: 0;
   background-color: #1d1f20;
   /* display: none; */
}

.close {
   position: absolute;
   top: 50px;
   right: 50px;
   color: white;
   font-size: 2em;
   /* background-color: white; */
   z-index: 100;
}

.noWrap {
   white-space: nowrap;
}

.notice {
   position: fixed;
   bottom: 10px;
   left: 50%;
   transform: translateX(-50%);
}

.ellipsis {
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
   transition: 0.3s ease-in-out;
}

.ellipsis2 {
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
   transition: 0.6s ease-in-out;
}

.ellipsis2:hover {
   position: relative;
   /* left: -156px; */
   /* right: -727px; */
   /* height: 30px; */
   margin: 0px -730px;
   background: rgba(0, 0, 0, 0.8);
   text-align: center;
}

.ellipsis:hover {
   overflow: initial;
   text-overflow: initial;
   white-space: initial;
   background-color: rgba(0, 0, 0, 0.8);
   position: fixed;
   width: 100%;
   left: 0;
   text-align: center;
   z-index: 10;
   margin-top: 84px;
}

.previousResult.ellipsis:hover + .nowResult {
   margin-top: 51px;
}

.grayColor {
   background-color: #a7aab1;
}

.darkGrayColor {
   background-color: #363439;
}

.orangeColor {
   background-color: #fe8e1f;
   padding-bottom: 5px;
}

.clearFix::before,
.clearFix::after {
   content: "";
   display: table;
   clear: both;
}

/*  */
body {
   background-color: #2c3e50;
   overflow: hidden;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
}

.wraper {
   background: url(./img/ipad.png) no-repeat center;
   background-size: contain;
   width: 780px;
   height: 820px;
   padding: 76px 139px;
   position: relative;
   min-height: 820px;
   min-width: 780px;
   /* margin-top: 370px; */
   z-index: 10;
}

.wraper::before {
   content: "";
   display: block;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 504px;
   height: 670px;
   /* padding: 76px 139px; */
   background-color: rgba(0, 0, 0, 0.8);
   /* box-sizing: border-box; */
   z-index: -1;
}

.btn {
   cursor: pointer;
}

.clicked {
   color: #7f8c8d;
}

.form,
.greetings {
   display: none;
}

.showing {
   display: flex;
}

/* .bgImage {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: -1;
   animation: fadeIn .5s linear;
} */

.bgImage {
   display: block;
   position: absolute;
   top: 50%;
   left: 0;
   transform: translateY(-50%);
   min-width: 1920px;
   /* height: 100%; */
   z-index: -2;
   animation: fadeIn 2s ease-in-out;
}

.bgCover {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.2);
   z-index: -1;
}

/* .bgCover2 {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.2);
   z-index: -1;
} */

.bgCover-01,
.bgCover-02,
.bgCover-03 {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   /* background-color: rgba(0, 0, 0, 0.2); */
   z-index: -1;
}

@keyframes fadeIn {
   from {
      opacity: 0;
   }
   to {
      opacity: 1;
   }
}

button {
   background: none;
   border: none;
   cursor: pointer;
}

.js-form-greeting {
   /* display: flex; */
   justify-content: center;
   align-items: center;
   font-size: 3em;
   text-align: center;
   margin-top: 25px;
   position: relative;
}

.js-form-greeting input {
   margin-top: 20px;
   background-size: 200%;
   background-image: linear-gradient(
      to right,
      #179f41 0%,
      #436b8d 51%,
      #397348 100%
   );
   border: none;
   height: 64px;
   line-height: 64px;
   font-size: 22px;
   display: inline-block;
   text-align: center;
   border-radius: 100px;
   color: white;
   transition: all 0.8s ease-in-out;
   opacity: 0.8;
   outline: none;
   padding: 0px 60px 0 20px;
   font-family: "Black Ops One", -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
      sans-serif;
}

.js-form-greeting input:hover {
   background-position: right center;
}

.js-form-greeting input::placeholder {
   color: rgba(255, 255, 255, 0.8);
}

.greetings {
   display: none;
   text-align: center;
   font-size: 2em;
   height: 84px;
   text-align: center;
   line-height: 84px;
   margin-top: -84px;
   /* margin-bottom: 1em; */
   /* display: flex; */
   /* justify-content: center;
   align-items: center; */
}

.greetings.showing {
   margin-top: 25px;
   display: block;
}

.greetings span {
   background: linear-gradient(125deg, #00ff52, #1470ff);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

.js-clock {
   position: absolute;
   /* margin-top: 90px; */
   top: 226px;
   left: 50%;
   transform: translateX(-50%);
   height: 70px;
   width: 100%;
}

h1 {
   /* color: #ffffff; */
   transition: color 0.5s ease-in-out;
   font-family: "Black Ops One", cursive;
   font-weight: normal;
   font-size: 5.5em;
   text-align: center;
   line-height: 0.8;
   /* background-color: white; */
   background: linear-gradient(125deg, #ff8398, #213dc9, #2dff07);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

.js-clock-cover {
   position: absolute;
   left: 0;
   top: 0;
   right: 0;
   bottom: 0;
   background-color: rgba(255, 255, 255, 1);
   /* animation: js-clock-cover 3s ease-in-out infinite; */
}

@keyframes js-clock-cover {
   0% {
      width: 0%;
   }
   10% {
      width: 100%;
   }
   20% {
      width: 0;
   }
   100% {
      width: 0;
   }
}

.bottom {
   position: absolute;
   top: 325px;
   left: 50%;
   transform: translateX(-50%);
   text-align: center;
   min-width: 460px;
   max-width: 460px;
   background-color: rgba(0, 0, 0, 0.4);
   /* background-color: rgba(255, 255, 255, 0.1); */
   border-radius: 20px;
   border: 1px solid #ffffff33;
   padding: 15px 0;
}

.bottom ul {
   width: 100%;
   height: 296px;
   text-align: center;
   padding: 10px 0;
   /* overflow: hidden; */
}

.js-toDoList {
   /* overflow-y: scroll; */
   /* overflow-x: hidden; */
   font-family: "Black Ops One", -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
      sans-serif;
}

.js-toDoList li {
   /* overflow-x: hidden; */
}

.fas {
   display: block;
}

.fomr-arrow-01 {
   position: absolute;
   background-color: #aa7e24;
   padding: 5px 10px 7px;
   border-radius: 50%;
   font-size: 19px;
   left: 371px;
   top: 34px;
   opacity: 0.8;
}

.js-form-greeting input:focus + .fomr-arrow-01 {
   opacity: 1;
   /* display: none; */
}

.js-toDoForm {
   position: relative;
}

.js-toDoForm input {
   background-size: 200%;
   background-image: linear-gradient(
      to right,
      #862f6f 0%,
      #989a23 51%,
      #dd1b6b 100%
   );
   border: none;
   outline: none;
   color: white;
   text-align: center;
   font-size: 1.7em;
   transition: all 0.8s ease-in-out;
   border-radius: 50px;
   padding: 10px 50px 10px 22px;
   width: 280px;
   font-family: "Black Ops One", -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
      sans-serif;
}

.js-toDoForm input:hover {
   background-position: right center;
}

.js-toDoForm input::placeholder {
   color: rgba(255, 255, 255, 0.5);
   /* font-family: "Black Ops One", cursive; */
}

.fomr-arrow-02 {
   position: absolute;
   background-color: #2425aa;
   padding: 5px 10px 7px;
   border-radius: 50%;
   font-size: 19px;
   left: 319px;
   top: 9px;
   opacity: 0.8;
}

.js-toDoForm input:focus + .fomr-arrow-02 {
   opacity: 1;
}

.js-toDoList li {
   font-size: 2em;
}

.js-toDoList li button {
   font-size: 1em;
   margin-left: 25px;
}

.js-toDoList li {
   text-align: left;
   text-indent: 20px;
}

.js-weather {
   color: rgb(237, 241, 0);
   font-weight: 200;
   font-family: "Black Ops One", -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
      sans-serif;
   font-size: 18px;
   animation: js-weather-ani 2s linear infinite alternate-reverse;
   display: inline-block;
   margin-bottom: 12px;
}

@keyframes js-weather-ani {
   0% {
      opacity: 0.5;
   }
   49% {
      opacity: 0.5;
   }
   50% {
      opacity: 0.9;
   }
   100% {
      opacity: 0.9;
   }
}

.weatehr-box {
   display: flex;
   justify-content: center;
   align-items: center;
   height: 0px;
   margin-top: 21px;
}

.js-weather-icon {
   display: block;
}
.js-weather-icon img {
}

.allRest {
   width: 40px;
   height: 40px;
   position: absolute;
   left: 50%;
   bottom: 21px;
   transform: translateX(-50%);
   transform-origin: center;
   border-radius: 100%;
   /* border: 1px solid rgb(255, 255, 255); */
   border: 2px solid transparent;
   animation: allRest 4s ease-in-out infinite alternate-reverse;
}

@keyframes allRest {
   0% {
      border: 2px solid rgba(255, 255, 255, 0);
      transform: translateX(-50%) scale(1);
   }
   33.33% {
      border: 2px solid rgba(255, 255, 255, 0.7);
      transform: translateX(-50%) scale(1.3);
   }
   66.66% {
      border: 2px solid rgba(255, 255, 255, 0.7);
      transform: translateX(-50%) scale(1.3);
   }
   100% {
      border: 2px solid rgba(255, 255, 255, 0);
      transform: translateX(-50%) scale(1);
   }
}

.remainTime {
   /* margin-top: -23px; */
   margin-bottom: 15px;
   font-size: 1.4em;
   font-family: "Black Ops One", -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
      sans-serif;
}

.selectForced{

}

.selectForced select{
   border: none;
   outline: none;
   background: transparent;
   color: #fff;
}
.selectForced select option{
   background: #3c6ba873;
   outline: none;
   border: none;
   color: #000;
}

.project {
   margin-top: 5px;
}

.project,
.copyRight {
   /* font-weight: bold; */
   font-size: 1em;
   background: rgba(0, 0, 0, 0.5);
   padding: 0 1em;
}

.weatherEffectBG {
   position: absolute;
   top: 0;
   left: 0;
}

body.Thunderstorm .bgCover-01 {
   background:  url(./img/light1.png) no-repeat -1% -4%;
   animation: Thunderstorm 5s cubic-bezier(0.4, 0, 1, 1) infinite;
   opacity: 1;
}
body.Thunderstorm .bgCover-02 {
   background:  url(./img/light2.png) no-repeat center center;
   background-size: cover;
   animation: Thunderstorm2 3s 2s cubic-bezier(0.4, 0, 1, 1) infinite;
   opacity: 1;
}
body.Thunderstorm .bgCover-03 {
   background:  url(./img/light3.png) no-repeat 141% -140%;
   animation: Thunderstorm 4s cubic-bezier(0.4, 0, 1, 1) infinite;
   opacity: 1;
}

@keyframes Thunderstorm {
   0% {
      opacity: 0;
   }
   20% {
      opacity: 1;
   }
   21% {
      opacity: 0;
   }
   100% {
      opacity: 0;
   }
}

@keyframes Thunderstorm2 {
   0% {
      opacity: 0;
   }
   50% {
      opacity: 1;
   }
   51% {
      opacity: 0;
   }
   100% {
      opacity: 0;
   }
}

body.Drizzle .bgCover-01 {
   background: url(./img/Drizzle.png) no-repeat center center;
   animation: Drizzle 2s ease-in-out infinite alternate-reverse;
   background-size: cover;
   /* opacity: 0.4; */
}
@keyframes Drizzle {
   0% {
      opacity: 0;
   }
   100% {
      opacity: 0.5;
   }
}

body.Rain .bgCover-01 {
   background: url(./img/rain.png) no-repeat center center;
   background-size: cover;
   animation: Rain1 7s linear infinite;
   opacity: 0.5;
}
body.Rain .bgCover-02 {
   background: url(./img/rain.png) no-repeat center -1920px;
   animation: Rain2 9s linear 2s infinite;
   background-size: cover;
   opacity: 0.5;
}
body.Rain .bgCover-03 {
   background: url(./img/rain.png) no-repeat center -1920px;
   background-size: cover;
   animation: Rain3 5s linear 3s infinite;
   opacity: 0.5;
}

@keyframes Rain1 {
   0% {
      background-position: center -1920px;
   }
   100% {
      background-position: center 980px;
   }
}

@keyframes Rain2 {
   0% {
      background-position: 1500px -1920px;
   }
   100% {
      background-position: -1500px 980px;
   }
}

@keyframes Rain3 {
   0% {
      background-position: 500px -1920px;
   }
   100% {
      background-position: -500px 980px;
   }
}

body.Snow .bgCover-01 {
   background: url(./img/snow.png) no-repeat center center;
   animation: snow1 7s linear infinite;
   opacity: 0.4;
}
body.Snow .bgCover-02 {
   background: url(./img/snow.png) no-repeat center -2400px;
   animation: snow2 15s linear 0s infinite;
   opacity: 0.4;
}
body.Snow .bgCover-03 {
   background: url(./img/snow.png) no-repeat -100px -2400px;
   animation: snow3 20s linear 3s infinite;
   opacity: 0.4;
}
@keyframes snow1 {
   0% {
      background-position: center -2400px;
   }
   100% {
      background-position: center 1000px;
   }
}

@keyframes snow2 {
   0% {
      background-position: center -2400px;
   }
   100% {
      background-position: center 1000px;
   }
}

@keyframes snow3 {
   0% {
      background-position: 500% -2400px;
   }
   100% {
      background-position: -400% 1000px;
   }
}

body.Mist .bgCover-01 {
   background: url(./img/mist01.png) no-repeat -100% center;
   background-size: 50%;
   animation: Mist1 7s linear 0.5s infinite;
   opacity: 0.6;
}
body.Mist .bgCover-02 {
   background: url(./img/mist01.png) no-repeat -100% center;
   background-size: 30%;
   animation: Mist2 12s linear infinite;
   opacity: 0.9;
}
body.Mist .bgCover-03 {
   background: url(./img/mist01.png) no-repeat -100% center;
   background-size: 70%;
   animation: Mist3 22s linear infinite;
   opacity: 0.7;
}
@keyframes Mist1 {
   0% {
      background-position: -100% -200%;
   }
   100% {
      background-position: 200% -200%;
   }
}
@keyframes Mist2 {
   0% {
      background-position: -100% 50%;
   }
   100% {
      background-position: 200% 50%;
   }
}
@keyframes Mist3 {
   0% {
      background-position: -200% -150%;
   }
   100% {
      background-position: 400% -150%;
   }
}
body.Smoke .bgCover-01 {
   background: url(./img/smoke.png) no-repeat center center;
   background-size: contain;
   animation: Smoke 4s linear infinite alternate-reverse;
   opacity: 0.5;
}
@keyframes Smoke {
   0% {
      opacity: 0;
   }
   100% {
      opacity: 1;
   }
}
body.Haze .bgCover-01 {
   background: rgba(0, 0, 0, 0.7) url(./img/haze1.png) no-repeat center center;
   background-size: cover;
   animation: Smoke 4s linear infinite alternate-reverse;
   opacity: 1;
}
@keyframes Haze {
   0% {
      opacity: 0;
   }
   100% {
      opacity: 1;
   }
}
body.Dust .bgCover-01 {
   background: url(./img/dust.png) no-repeat center center;
   background-size: cover;
   animation: Dust 5s ease-in-out infinite;
   opacity: 1;
}
@keyframes Dust {
   0% {
      transform: scale(0);
   }
   30% {
      transform: scale(1);
   }
   40% {
      transform: scale(0);
   }
   100% {
      transform: scale(0);
   }
}
body.Fog .bgCover-01 {
   background: rgba(255,255,255,0.5) url(./img/fog.png) no-repeat center center;
   background-size: cover;
   animation: Haze 3s ease-in-out infinite alternate;
   opacity: 1;
}
body.Sand .bgCover-01 {
   background: url(./img/sand.png) no-repeat center center;
   background-size: cover;
   animation: Sand 10s linear infinite;
   opacity: 1;
}
@keyframes Sand {
   0% {
      opacity: 0;
   }
   50% {
      opacity: 1;
   }
   60% {
      opacity: 0;
   }
   100% {
      opacity: 0;
   }
}
body.Ash .bgCover-01 {
   background: url(./img/dust.png) no-repeat center center;
   background-size: cover;
   animation: Dust 5s ease-in-out infinite;
   opacity: 1;
}
body.Squall .bgCover-01 {
   background: url(./img/Tornado.png) no-repeat center center;
   background-size: cover;
   animation: Sand 5s ease-in-out infinite;
   opacity: 1;
}
body.Tornado .bgCover-01 {
   background: url(./img/Tornado.png) no-repeat center center;
   background-size: cover;
   animation: Sand 5s ease-in-out infinite;
   opacity: 1;
}

body.Clear .bgCover-01 {
   background: url(./img/sunshine.png) no-repeat -100% -50%;
   background-size: 70%;
   animation: sunshine1 4s linear infinite alternate-reverse;
   opacity: 0.5;
}
body.Clear .bgCover-02 {
   background: url(./img/sunshine.png) no-repeat 90% 67%;
   background-size: 30%;
   animation: sunshine1 2s linear 2s infinite alternate-reverse;
   opacity: 0.1;
}
/* body.Clear .bgCover-01{
   background:  url(./img/mist01.png) no-repeat -100% center;
   background-size: 70%;
   animation: Mist3 22s linear infinite;
   opacity: 0.5;
} */
@keyframes sunshine1 {
   0% {
      opacity: 0;
   }
   100% {
      opacity: 0.8;
   }
}
body.Clouds .bgCover-01 {
   background: url(./img/cloud.png) no-repeat -10% center;
   background-size: 70%;
   animation: Clouds1 16s linear infinite;
   opacity: 0.7;
}
body.Clouds .bgCover-02 {
   background: url(./img/cloud.png) no-repeat -100% center;
   background-size: 50%;
   animation: Clouds2 10s linear 2s infinite;
   opacity: 1;
}
body.Clouds .bgCover-03 {
   background: url(./img/cloud.png) no-repeat -1800px -1670%;
   background-size: 100%;
   animation: Clouds3 22s linear 4s infinite;
   opacity: 0.6;
}
@keyframes Clouds1 {
   0% {
      background-position: -200% -50%;
   }
   100% {
      background-position: 200% -50%;
   }
}
@keyframes Clouds2 {
   0% {
      background-position: -100% 50%;
   }
   100% {
      background-position: 200% 50%;
   }
}
@keyframes Clouds3 {
   0% {
      background-position: -1800px -1670%;
   }
   100% {
      background-position: 1740px -1670%;
   }
}
