body {
    background-color: #FFFFD4;
}

.welcome_form {
    width: 60vw;
    margin: 40vh auto 0;
    text-align: center;
}

.main_div {
    width: 60vw;
    margin: 0 auto 0;
}

.env_block {

}

.env_main_block {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
}

.update_button {
    text-decoration: none;
    display: inline-block;
    padding: 12px 40px;
    margin: 0;
    border-radius: 30px;
    background-image: linear-gradient(45deg, #6ab1d7 0%, #33d9de 50%, #002878 100%);
    background-position: 100% 0;
    background-size: 200% 200%;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: white;
    box-shadow: 0 16px 32px 0 rgba(0, 40, 120, .35);
    transition: .5s;
    cursor: pointer;
}

.cache_top {
    background-image: linear-gradient(45deg, #6ab1d7 0%, #33d9de 50%, #002878 100%);
    border-radius: 30px 30px 0 0;
    padding: 10px 0;
}
.cache_top p {
    color: #fff;
    text-shadow: 1px 1px 2px black, 0 0 1em #000;
}
.cache_top a {
    color: #bbffbb;
}

.update_button:hover {
    box-shadow: 0 0 0 0 rgba(0, 40, 120, 0);
    background-position: 0 0;
}

.update_button_aligner {
    text-align: center;
}





* {
    box-sizing: border-box;
}
body {
    background: #f69a73;
}
.decor {
    position: relative;
    width: 600px;
    margin: 50px auto 0;
    background: white;
    border-radius: 30px;
}
.form-left-decoration, .form-right-decoration {
    content: "";
    position: absolute;
    width: 50px;
    height: 20px;
    background: #f69a73;
    border-radius: 20px;
}
.form-left-decoration {
    bottom: 60px;
    left: -30px;
}
.form-right-decoration {
    top: 60px;
    right: -30px;
}
.form-left-decoration:before, .form-left-decoration:after, .form-right-decoration:before, .form-right-decoration:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 20px;
    border-radius: 30px;
    background: white;
}
.form-left-decoration:before {
    top: -20px;
}
.form-left-decoration:after {
    top: 20px;
    left: 10px;
}
.form-right-decoration:before {
    top: -20px;
    right: 0;
}
.form-right-decoration:after {
    top: 20px;
    right: 10px;
}
.circle {
    position: absolute;
    bottom: 80px;
    left: -55px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
}
.form-inner {
    padding: 50px;
    position: relative;
}
.form-inner input, .form-inner textarea {
    display: block;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 10px;
    background: #E9EFF6;
    line-height: 40px;
    border-width: 0;
    border-radius: 20px;
    font-family: 'Roboto', sans-serif;
}
.form-inner input[type="submit"] {
    margin-top: 30px;
    background: #f69a73;
    border-bottom: 4px solid #d87d56;
    color: white;
    font-size: 14px;
    transition: 1s;
}

.form-inner input[type="submit"]:hover {
    background: #f69a73aa;
}

.form-inner textarea {
    resize: none;
}
.form-inner h3 {
    margin-top: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #707981;
}

.form_toggle {
    display: inline-block;
    overflow: hidden;
}
.form_toggle-item {
    float: left;
    display: inline-block;
}
.form_toggle-item input[type=radio] {
    display: none;
}
.form_toggle-item label {
    display: inline-block;
    padding: 0px 15px;
    line-height: 34px;
    border: 1px solid #999;
    border-right: none;
    cursor: pointer;
    user-select: none;
}

.form_toggle .item-1 label {
    border-radius: 6px 0 0 6px;
}
.form_toggle .item-2 label {
    border-radius: 0 6px 6px 0;
    border-right: 1px solid #999;
}

/* Checked */
.form_toggle .item-1 input[type=radio]:checked + label {
    background: #ffc5c5;
}
.form_toggle .item-2 input[type=radio]:checked + label {
    background: #bbffbb;
}
.nodisplay {
     display: none!important;
 }


.overloader {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #00000060;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overloader_сircle {
    width: 200px;
    height: 200px;
    border: 10px groove #33d9de;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: round_clock  2s infinite;
}

.overloader_сircle_inside {
    width: 100px;
    height: 100px;
    border: 10px dotted #33d9de;
    border-radius: 50%;
    animation: round_clock_rev  2s infinite;
}

.href_to_cache {
    position: absolute;
    transform: rotate(90deg);
    right: -63px;
    top: 139px;
    width: 100px;
    height: 25px;
    background: red;
    border-radius: 20px 20px 0 0 ;
    background-image: linear-gradient(45deg, #6ab1d7 0%, #33d9de 50%, #002878 100%);
    background-size: 100%;
    transition: 1s;
    text-align: center;
}

.href_to_cache:hover {
    background-size: 200%;
}

.href_to_cache a {
    display: block;
    width: 100px;
    height: 25px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
}

@keyframes round_clock {
    from {transform: rotate(0deg);;}
    50% {transform: rotate(180deg);}
    to {transform: rotate(360deg);}
}

@keyframes round_clock_rev {
    from {transform: rotate(0deg);;}
    50% {transform: rotate(-360deg);}
    to {transform: rotate(-720deg);}
}



.nooppacity {
    transition: 1s;
    opacity: 0;
}
.oppacity {
    transition: 1s;
    opacity: 1;
}

.table_dark {
    font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
    font-size: 14px;
    text-align: left;
    border-collapse: collapse;
    background: #252F48;
    width: 800px!important;
    display: block;
}
.table_dark th {
    color: #EDB749;
    border-bottom: 1px solid #37B5A5;
    padding: 12px 17px;
}
.table_dark td {
    color: #CAD4D6;
    border-bottom: 1px solid #37B5A5;
    border-right:1px solid #37B5A5;
    padding: 7px 17px;
}
.table_dark tr:last-child td {
    border-bottom: none;
}
.table_dark td:last-child {
    border-right: none;
}
.table_dark tr:hover td {
    text-decoration: underline;
}
.table_dark a {
    color: #fff;
    word-break:break-all;
}
.table_dark tr {
    transition: 1s;
}
.table_dark tr:hover {
    background-color: #303a52;
}




.main_actual {
    width: 1000px;
    margin: 0 auto;
}

.actual_line {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}

.lefter {
    width: 20px;
}

.toggler {
    width: 20px;
    height: 20px;
    background-color: red;
    margin: 2px 10px 2px 2px;
    border-radius: 10px;
    display: block;
}

.togglerGreen {
    background-color: green;
}