/*CSS Style*/
@import url('reset.css');
@import url('snipets.lib.css');
@import url('https://fonts.googleapis.com/css2?family=Oxygen+Mono&family=VT323&display=swap');

/*Colors
purple  #2C3553    text for white
red     #D450A4
sky     #14e8d7    for link

button & lines
red     #d11a56
purple  #9516be

*/
/*Boxing Style*/
*{
    box-sizing: border-box;
}

/*----Index Page Styles
------------------------------------------------*/
body{
    font-family: 'Arial', sans-serif;
    color: #2C3553;
    font-size: 14px;
    background-color: #222;
}

a{
    color: #22a6b3;
    text-decoration: underline;
}

a:hover{
    text-decoration: none;
}

p{
    line-height: 1.7em;
    padding-bottom: 15px;
    font-size: 14px;
}

h1{
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 40px;
}

.color-str{
    color: #d11a56;
}

button{
    cursor: pointer;
}

/*
*   Header
*/
.preloader{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 999999999;
    transition: 1s all;
    opacity: 1;
    visibility: visible;
}

.loader{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

@keyframes load {
  0% {
        transform: translate(6px);
        background: #fff;
    }
  50%{
        transform: translate(102px);
        background: #D11A56;
    }
  100%{
        transform: translate(6px);
        background: #fff;
    }
}

/*----Welcome Index
------------------------------------------------*/
.welcome_area{
    background: url(../images/_sistem/index_bg4.jpg) no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.bg_temp{
    width: 100%;
    height: 100vh;
}

/*----Side Bar
------------------------------------------------*/
.side-bar{
    background: #2a2a2e;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 60px;
    transition: 0.2s ease-in-out;
}

.side-bar-not-active{
    left: -60px;
}

.bar-wrap{
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
}

.side-icon{
    width: 26px;
    height: 26px;
    border: 1px solid #d11a56;
    background-color: #d11a56;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    bottom: 50%;
    left: 77px;
    transform: rotate(0);
    transition: 0.2s ease-in-out;
}

.side-icon-rt{
    transform: rotate(-180deg);
    transition: 0.2s ease-in-out;
}

.side-arrow{
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    transform: rotate(-45deg);
    position: relative;
    top: 8px;
    left: 9px;
}

/* Logotype */
.logotype{
    width: 60px;
    height: 60px;
}

.logo{
    height: 50px;
    width: 50px;
    position: relative;
    overflow: hidden;
    transition: .5s ease-in-out;
    padding: 10px 0 0 15px;
}

.logo:hover{
    width: 170px;
}

.logo a{
    display: block;
    color: #fff;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    padding-left: 50px;
    font-size: 24px;
    height: 60px;
    line-height: 40px;
    width: 60px;
    text-decoration: none;
    background: url(../images/_sistem/logoc.png) no-repeat;
}

.logo a span{
    color: #d11a56;
}

.btt-link{
    width: 60px;
    height: 60px;
    position: absolute;
    bottom: 0;
    background-color: #d11a56;
}

.nav-line{
    width: 40px;
    height: 1px;
    background-color: rgb(148, 144, 144);
    margin: 30px auto;
}

#nav{
    width: 60px;
    display: flex;
    flex-direction: column;
}

#nav li{
    margin-bottom: 20px;
}

#nav li a{
    display: block;
    margin-left: 14px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid rgb(148, 144, 144);
    color: rgb(148, 144, 144);
    font-size: 14px;
    text-decoration: none;
    border-radius: 0;
    transition: .3s ease-in-out;
}

#nav li a:hover{
    border: 1px solid #d11a56!important;
    color: #d11a56!important;
    border-radius: 50%;
}

.nav-active{
    border: 1px solid #d11a56!important;
    color: #d11a56!important;
    border-radius: 50%!important;
}

/*----Side Content
------------------------------------------------*/
.side-content{
    width: 100%;
    height: 100vh;
    padding-left: 120px;
    width: 100%;
}

.top-nav{
    text-align: right;
    padding: 20px;
}

.index-content{
    width: 600px;
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
}

.my-name{
    color: #fff;
    background: linear-gradient(to right, transparent 2%, #d11a56 80%);
    padding: 5px 0;
    font-size: 63px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 20px;
    width: 590px;
    transition: 1s ease-in-out;
}

.pre-content{
    color: #fff;
    letter-spacing: 13.4px;
    margin-bottom: 60px;
}

.index-btt{
    display: flex;
    justify-content: space-between;
    padding-right: 10px;
}

/*----Pages Styles
------------------------------------------------*/
.page-content{
    width: 100%;
    height: 900px;
}

/*----Calculator Page Styles
------------------------------------------------*/

/*Calculator*/
#calc_bg{
    background: url(../images/_sistem/calc_bg.jpg) no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.calc-sect{
    display: none;
}

.calc-box{
    width: 560px;
    background-color: #2C3553;
    margin: 40px auto 0;
    overflow: hidden;
}

.calc-box button{
    opacity: .8;
}

.calc-box button:hover{
    opacity: 1;
}

.calc-head{
    color: #fff;
    background-color: #d11a56;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 24px;
}

.calc-screen{
    margin: 20px auto;
    width: 490px;
    height: 48px;
}

.inp-screen{
    background-color: #727991;
    padding-right: 10px;
    padding-left: 10px;
    width: 490px;
    height: 48px;
    text-align: right;
    border: 0;
    font-size: 28px;
    color: #fff;
}

.calc-keyboard{
    padding: 0 35px;
}

.top-key{
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

.btt-d{
    border-radius: 5px;
}

.btt-zero{
    border: 0;
    background-color: #d11a56;
    width: 140px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-size: 26px;
}

.btt-b{
    border: 0;
    border-radius: 5px;
    height: 50px;
    line-height: 50px;
    width: 140px;
    background-color: #74b9ff;
    text-align: center;
    font-size: 26px;
}

.num-row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.btt-key{
    border: 0;
    border-radius: 5px;
    height: 50px;
    line-height: 50px;
    width: 52px;
    text-align: center;
    font-size: 26px;
}

.simp{
    background-color: rgb(235, 229, 229);
}

.imp{
    border: 0;
    border-radius: 5px;
    height: 50px;
    line-height: 50px;
    width: 52px;
    background-color: #74b9ff;
    text-align: center;
    font-size: 26px;
}

.bott-key{
    padding-bottom: 30px;
    display: flex;
    justify-content: space-between;
}

.btt-equals{
    border: 0;
    border-radius: 5px;
    height: 50px;
    line-height: 50px;
    width: 228px;
    background-color: #d11a56;
    text-align: center;
    font-size: 26px;
}

/*Calculator Present*/
.prc-box{
    margin: 40px 0;
    text-align: center;
}

.prc-box button{
    margin: 0 5px;
}

.btt-prc{
    border: 0;
    border-radius: 5px;
    height: 40px;
    line-height: 40px;
    width: 68px;
    text-align: center;
    font-size: 16px;
}

.btt-prc{
    border: 0;
    border-radius: 5px;
    height: 40px;
    line-height: 40px;
    width: 68px;
    text-align: center;
    font-size: 16px;
}

.btt-prc-cl{
    background-color: #d11a56;
    color: #fff;
    border: 0;
    border-radius: 5px;
    height: 40px;
    line-height: 40px;
    width: 68px;
    text-align: center;
    font-size: 16px;
}

.prc-data{
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.prc-data div{
    margin: 0 25px;
}

.result-screen{
    margin-bottom: 30px;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
}

.prc-res{
    text-align: center;
    margin-bottom: 40px;
}

.btt-result{
    border: 0;
    border-radius: 5px;
    height: 50px;
    line-height: 50px;
    width: 228px;
    background-color: #d11a56;
    text-align: center;
    font-size: 26px;
    color: #fff;
}

.inp{
    background-color: #727991;
    border-radius: 5px;
    padding-right: 10px;
    padding-left: 10px;
    width: 140px;
    height: 44px;
    border: 0;
    font-size: 22px;
    color: #fff;
}

/*Time Calculator*/
.time-data{
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.time-data div{
    margin: 0 15px;
}

.inp-tm{
    background-color: #727991;
    border-radius: 5px;
    padding-right: 10px;
    padding-left: 10px;
    width: 90px;
    height: 44px;
    border: 0;
    font-size: 16px;
    color: #fff;
}

.btt-tm-cl{
    border: 0;
    border-radius: 5px;
    height: 50px;
    line-height: 50px;
    width: 60px;
    background-color: #d11a56;
    text-align: center;
    font-size: 26px;
    color: #fff;
    margin-left: 30px;
}

.result-time{
    width: 320px;
    margin: 40px auto;
}

.res-bxx{
    margin-bottom: 10px;
}

.res-bxx div:first-child{
    border-bottom: 1px dashed #d11a56;
    font-size: 12px;
    color: #d11a56;
}

.res-bxx div:last-child{
    font-size: 22px;
    color: #fff;
    padding-top: 10px;
}

/*----Smart Watch Styles
------------------------------------------------*/
.world-cont{
    width: 800px;
    margin: 0 auto;
    text-align: center;
}

#smart-time{
    margin: 50px auto 20px;
    width: 800px;
    height: 250px;
    line-height: 250px;
    text-align: center;
    background: url(../images/_sistem/clock01.jpg) no-repeat center;
    background-color: #181717;
    border: 2px solid #540701;
    border-radius: 15px;
    overflow: hidden;
}

#smart_watch{
    width: 730px;
    margin: 0 auto;
}

.tm-flex{
    display: flex;
    flex-direction: column;
}

.tm-info-sect{
    line-height: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.tm-sect{
    flex-direction: column;
    line-height: 150px;
    height: 150px;
}

.tm-font{
    font-family: "Oxygen Mono", monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 150px;
    color: #fff;
}

.tm-hrs,.tm-mns,.tm-sec{
    height: 150px;
    line-height: 150px;
}

.tm-txt{
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-family: "Oxygen Mono", monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    color: #fff;
}

.txt-red{
    position: relative;
    top: -2px;
    color: #D11A56
}

.tm-sec{
    color: #D11A56;
}

.tm-desc div{
    width: 190px;
}

.top-sect{
    padding: 0 50px;
    background-color: #000;
    opacity: .8;
}

.top-sect > div{
    width: 220px;
    color: #fff;
}

.ru-date{
    color: #fff;
    font-size: 12px;
    text-align: left;
}

.ru-tm-year{
    font-size: 16px;
}

.fa-sun,.fa-moon{
    color: #fff;
    font-size: 14px;
}

.info-day{
    text-align: right;
}

.tm-day{
    font-size: 12px!important;
}

.info-day span{
    margin-left: 10px;
    font-size: 16px;
    color: #fff;
}

#weather-sect{
    margin: 0 auto;
    width: 710px;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

.wtr-elements{
    width: 710px;
    line-height: 20px;
    height: 20px;
}

.wt{
    font-size: 14px;
    color: #D11A56;
}

.wtDeg{
    font-size: 14px;
    color: #fff;
}

.wtDesc,.wtTownC{
    font-size: 14px;
    color: #fff;
}

.wtPresDsc{
    font-size: 14px;
    color: #fff;
}

.sec-timer{
    margin-left: 65px;
    overflow: hidden;
    height: 3px;
}

.sec-line{
    width: 60px!important;
    height: 3px;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,1) 6%, rgba(245,42,104,1) 65%);
}

/*----Smart Timer Styles
------------------------------------------------*/
.timer-cont{
    width: 400px;
    margin: 0 auto;
}

.remote-contr{
    display: flex;
    justify-content: center;
    width: 300px;
    margin: 20px auto;
}

.add-button{
    display: block;
    margin: 0 auto;
    border: 0;
    background-color: #d11a56;
    border-radius: 30px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-weight: lighter;
    letter-spacing: 2px;
    transition: .3s ease-in-out;
    padding: 7px 20px;
}

.form-container {
    display: none;
    margin: 0 auto 20px;
    padding: 10px;
    background-color: #222;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    width: 280px;
}

.cl-form{
    display: flex;
    justify-content: end;
}

.fa-xmark{
    cursor: pointer;
    font-size: 10px;
    color: #fff;
}

.tm-form{
    display: flex;
    justify-content: center;
}

form div{
    text-align: center;
}

input{
    color: #000;
    font-size: 1rem;
}

input, .cnt-butt {
    margin: 10px 0;
    padding: 5px;
    border-radius: 5px;
    border: none;
}

.cnt-butt {
    display: block;
    margin: 0 auto;
    border: 0;
    background-color: #d11a56;
    border-radius: 30px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-weight: lighter;
    letter-spacing: 2px;
    transition: .3s ease-in-out;
    padding: 7px 20px;
}

.cnt-butt:hover {
    background-color: #f0729c;
}

.timer-name{
    margin: 20px 0;
    font-size: 12px;
    text-align: center;
    color: #fff;
}

.timer-container {
    margin: 0 auto 20px;
    width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 20px;
    background: transparent;
    border: 1px solid #D11A56;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.timer{
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
}

.target-desc{
    font-size: 12px;
    text-align: center;
    color: #fff;
}

/*----Books Training Page
------------------------------------------------*/
.dzen-sect{
    margin-top: 40px;
    width: 950px;
}

.bk-item-desc{
    display: flex;
    border-bottom: 1px solid #d11a56;
    padding: 7px 0;
    color: #d11a56;
}

.bk-field-ds{
    width: 190px;
    text-align: center;
    border-right: 1px solid #d11a56;
}

.bk-field-ds:first-child{
    border-left: 1px solid #d11a56;
}

.bk-item{
    display: flex;
    border-bottom: 1px solid #fff;
    padding: 7px 0;
    font-size: 12px;
    color: #fff;
}

.bk-field{
    width: 190px;
    text-align: center;
    border-right: 1px solid #fff;
}

.bk-field:first-child{
    border-left: 1px solid #fff;
}

/*----Buttons Styles
------------------------------------------------*/
.btt-full{
    background-color: #d11a56;
    display: block;
    height: 46px;
    line-height: 46px;
    width: 270px;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    font-weight: lighter;
    letter-spacing: 2px;
    position: relative;
    transition: .3s ease-in-out;
}

.btt-full:hover{
    box-shadow: 0px 5px 19px rgba(251, 174, 228, 0.3);
}

.btt-brd{
    border: 1px solid #d11a56;
    background-color: transparent;
    display: block;
    height: 46px;
    line-height: 46px;
    width: 270px;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    font-weight: lighter;
    letter-spacing: 2px;
    position: relative;
    transition: .3s ease-in-out;
}

.btt-brd:hover{
    background-color: #d11a56;
    box-shadow: 0px 5px 19px rgba(251, 174, 228, 0.3);
}

.btt-calc,.tm-btt{
    border: 1px solid #d11a56;
    padding: 7px 18px;
    background-color: transparent;
    border-radius: 30px;
    color: #fff;
    margin-right: 20px;
    cursor: pointer;
    transition: .3s ease-in-out;
}

.tm-btt:last-child{
    margin-right: 0;
}

.btt-calc-sel,.btt-calc-act{
    background-color: #d11a56;
    box-shadow: 0px 5px 19px rgba(251, 174, 228, 0.3);
}

.btt-calc:hover,.tm-btt:hover{
    background-color: #d11a56;
    box-shadow: 0px 5px 19px rgba(251, 174, 228, 0.3);
}

.btt-def{
    border: 0;
    border-radius: 30px;
    color: #d11a56;
    background-color: #d11a56;
    cursor: pointer;
}

.btt-log{
    height: 26px;
    line-height: 26px;
    width: 80px;
    border: 0;
    border-radius: 30px;
    color: #fff;
    font-size: 12px;
    font-weight: lighter;
}

.web-wrap{
    position: fixed;
    right: 1%;
    bottom: 0;
    width: 270px;
    height: 150px;
    background: #fff;
    transition: .2s ease-in-out;
    transform: translate(0,112px);
}

.web-head{
    background-color: #d11a56;
    color: #fff;
    font-size: 18px;
    height: 38px;
    line-height: 38px;
    padding-left: 15px;
    cursor: pointer;
}

.web-body{
    padding: 15px;
}

.web-wrap:hover{
    transform: translate(0,0);
}

