
@font-face {
    font-family: 'orbitron';
    src: url('/static/fonts/orbitron/static/Orbitron-Bold.ttf') format('truetype'),
            url('path-to-your-font.woff') format('woff');
    font-weight: normal;
    font-style: normal; 
}
  
@font-face {
    font-family: 'orbitron-eb';
    src: url('/static/fonts/orbitron/static/Orbitron-ExtraBold.ttf') format('truetype'),
            url('path-to-your-font.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.abel-regular {
    font-family: "Abel", sans-serif;
    font-weight: 400;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

a {
    text-decoration: none;
    color: #002B42;
    transition: all 0.2s;

}

main {
    width: 1000px;
    margin: auto;
    margin-top: 30px;
    border: 2px solid #808080;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    padding-top: 80px;
    position: relative;
    border-radius: 5px;
    background: linear-gradient(90deg, rgba(51,51,51,1) 0%, rgba(73,73,73,1) 100%);
    box-shadow: inset 10px -10px 5px -3px rgba(0,0,0,0.35);
    background: rgb(0,43,66);
    background: linear-gradient(90deg, rgba(0,43,66,1) 0%, rgba(15,68,96,1) 100%);
    /*background: none;
    box-shadow: none;
    border: none;*/
    
}

.content_container {
    /*box-shadow: 10px -10px 5px -3px rgba(0,0,0,0.35);
    */padding: 20px;
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    background-color: white;
    border-left: 2px solid #96CE36;
}

.logo {
    position: absolute;
    top: 29px;
    left: 50px;
    height: 25px;
}

.user_actions_frame {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 180px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.user_actions_frame2 {
    position: absolute;
    top: 20px;
    right: 30px;
    width: auto;
    height: 40px;
    display: flex;
    font-family: "Oswald";
    align-items: center;
    justify-content: space-between;
}

.action_item {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    cursor: pointer;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    box-shadow: 4px -4px 5px 2px rgba(0,0,0,0.35);
    transition: all 0.2s;
    font-family: abel;
    font-weight: bold;
    margin-left: 10px;
}
.action_item2 {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #96CE36;
    cursor: pointer;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    box-shadow: 4px -4px 5px 2px rgba(0,0,0,0.35);
    transition: all 0.2s;
    font-family: abel;
    font-weight: bold;
    margin-left: 10px;
}
.action_item i {
    font-size: 24px;
    transition: all 0.4s;
    color: #96CE36;
    text-shadow: 1px 1px 2px #000000;
}
.action_item:hover {
    border-radius: 0px;
    color: #002B42;
    background-color: #96CE36;
}
.action_item2:hover {
    border-radius: 0px;
    color: #002B42;
    background-color: #f0f0f0;
}

.main_tit {
    width: 100%;
    height: 20px;
    font-family: orbitron;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #002B42;
}
.main_tit img {
    height: 26px;
    margin-left: 7px;
}
.sub_tit {
    width: 90%;
    margin-left: 40px;
    font-family: Oswald;
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 200;
}

.top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: auto;
    margin-top: 30px;
}
.top_left {
    width: 56.5%;
    border-left: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    border-bottom: 2px dashed #ccc;
}
.top_left_item {
    width: 100%;
    height: 32px;
    background-color: #F1F1F1;
    border-bottom: 1px solid #ccc;
    display: flex;
    font-family: Abel;
    cursor: default;
}
.top_left_item:hover {
    background-color: #e4e4e4;
}
.top_left_item div {
    display: flex;
    align-items: center;
    justify-content: center;
}
.game_ico {
    width: 5%;
    height: 100%;
}
.game_ico img {
    width: 25px;
    height: 25px;
}
.server_name {
    width: calc(50% - 10px);
    font-weight: bold;
    padding-left: 10px;
    height: 100%;
}
.server_ip {
    width: 45%;
    height: 100%;
    font-weight: bold;
    padding-right: 5px;
}
.server_actions {
    width: 15%;
    height: 100%;
}
.server_actions i {
    color: black;
    font-size: 20px;
    margin-left: 20px;
}

.top_right {
    width: 42%;
    border: 1px solid #96CE36;
}
.top_right_item {
    width: calc(100% - 4px);
    height: 40px;
    font-size: 20px;
    background-color: #f1f1f1;
    font-family: Abel;
    border-left: 4px solid #96CE36;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid #002B42;
}
.top_right_item i {
    width: 10%;
    height: 100%;
    background-color: #002B42;
    color: #96CE36;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top_right_item div {
    width: calc(90% - 10px);
    padding-left: 10px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: normal;
    font-family: Oswald;
}
.top_right_item:hover {
    border-left: 10px solid #96CE36;
    width: calc(100% - 10px);
}

.slideshow {
    width: calc(100% + 103px);
    margin-left: -52px;
    margin-top: -22px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    border: 1px solid #ccc;
    border: 2px solid #002B42;
    background-color: #002B42;
    border-left: 2px solid #96CE36;
    border-left: 0;
    border-bottom: 1px solid #96CE36;
    border-top: 2px solid #96CE36;
    border-right: 1px solid #96CE36;
    border-right: 0;
    box-shadow: 0px 10px 9px -3px rgba(0,0,0,0.75);
    
    border-radius: 0 0 40px 40px;   
}
.slideshow_left_btn {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: #f1f1f1;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    opacity: 0.8;
    box-shadow: 4px -4px 5px 2px rgba(0,0,0,0.35);
}
.slideshow_right_btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: #f1f1f1;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    opacity: 0.8;
    box-shadow: 4px -4px 5px 2px rgba(0,0,0,0.35);
}
.slideshow_item {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    position: absolute;
    transition: opacity 2s;
}
.fade {
    opacity: 1;
    transition: opacity 2s;
}
.slideshow_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow_text {
    position: absolute;
    bottom: 15px;
    width: auto;
    max-width: 45%;
    height: auto;
    left: 15px;
    z-index: 1;
    /*border: 2px solid #96CE36;*/
    background-color: #000000a2;
    color: white;
    font-family: Abel;
    padding-bottom: 15px;
    padding-right: 25px;
    border-radius: 0 0 0 40px;
    box-shadow: 4px -4px 5px 2px rgba(0,0,0,0.35);
}
.slideshow_title {
    width: auto;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: left;
    font-size: 30px;
    font-weight: bold;
    font-family: orbitron;
    color: #96CE36;
    padding-left: 15px;
    padding-right: 30px;
    text-shadow: 1px 1px 2px #000000;
}
.slideshow_desc {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: left;
    font-size: 16px;
    padding-left: 15px;
    padding-right: 15px;
    font-family: 'Oswald';
    font-weight: 300;
}
.slideshow_price {
    position: absolute;
    bottom: 15px;
    width: auto;
    height: auto;
    left: 70%;
    padding: 15px;
    padding-right: 15px;
    text-decoration: none;
    z-index: 1;
    cursor: pointer;
    border: 2px solid #659e03;
    background-color: #96CE36;
    color: white;
    font-weight: bold;
    font-family: Abel;
    padding-bottom: 15px;
    font-size: 30px;
    transition: all 0.3s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    box-shadow: 4px -4px 5px 2px rgba(0,0,0,0.35);
}
.slideshow_price:hover {
    background-color: #659e03;
    border: 2px solid #96CE36;
}
.tops {
    font-family: Abel;
    margin-top: 60px;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tops_item {
    width: 22%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    cursor: pointer;
    box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.35);
}

.tops_item img {
    opacity: 0.8;
    transition: all 0.4s;
}
.tops_item:hover img {
    opacity: 1;
}

.tops_img_cs2 {
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.tops_img_dst {
    width: 130%;
    height: 130%;
    object-fit: fill;
}
.tops_img_mc {
    width: 100%;
    height: 180%;
    object-fit: fill;
}
.tops_img_ark {
    width: 80%;
    height: 100%;
    object-fit: fill;
}

.text_for_tops {
    margin-top: 50px;
    font-family: Abel;
    width: 100%;
    height: auto;
}
.text_for_tops_desc {
    font-size: 18px;
    color: #002B42;
    text-align: left;
    font-family: 'Oswald';
    font-weight: 200;
}
.calc {
    width: 100%;
    height: 500px;
    font-family: Abel;
    font-size: 20px;
    color: #002B42;
    margin-top: 20px;
    border-radius: 20px;
}
.games {
    width: 100%;
    height: auto;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.games_item {
    /*display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    font-weight: bold;
    transition: all 0.2s;*/
}
.games_item:hover {
    background-color: #96CE36;
}
.gi_active {
    background-color: #96CE36;
}
.games2 {
    width: 100%;
    height: auto;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    padding-bottom: 2px;
}
/*
.games2 .games_item:first-child {
    margin-left: 70px;
}

.games2 .games_item:last-child {
    margin-right: 70px;
}*/
.soupatko {
    width: 100%;
    height: 120px;
    position: relative;
}
.orderRange {
    position: absolute;
    display: flex;
    top: 10px;
    right: -21px;
    width: 220px;
    border: none;
    padding-top: 7px;
    padding-bottom: 2px;
    outline: none;
    font-family: oswald;
    border-radius: 5px 0 0 5px;
    font-size: 18px;
    color: grey;
    /*border-top: 1px solid #96CE36;
    border-left: 1px solid #96CE36;
    text-shadow: 0px 0px 0px #000000;
    background-color: #0E435F;*/
    align-items: center;
    justify-content: right;
    /*box-shadow: inset 4px 4px 4px 0px rgba(0, 0, 0, 0.342);
    background: rgb(14,67,95);
    background: linear-gradient(270deg, rgba(14,67,95,1) 0%, rgba(255,255,255,1) 100%);*/
}
.sleva {
    position: absolute;
    display: flex;
    top: 61px;
    right: -22px;
    width: 120px;
    border: none;
    padding-top: 2px;
    padding-bottom: 2px;
    border-radius: 5px 0 0 5px;
    outline: none;
    font-family: oswald;
    font-size: 17px;
    color: #96CE36;
    border-top: 1px solid #96CE36;
    border-left: 1px solid #96CE36;
    text-shadow: 0px 0px 0px #000000;
    background-color: #0E435F;
    align-items: center;
    justify-content: center;
    box-shadow: inset 4px 4px 4px 0px rgba(0, 0, 0, 0.342);
    /*background: rgb(14,67,95);
    background: linear-gradient(270deg, rgba(14,67,95,1) 0%, rgba(255,255,255,1) 100%);*/
}

.soupatko_sel {
    cursor: pointer;
    position: relative;
    z-index: 10;
}
.soupatko_sel:hover {
    color: #002B42;
}

.soupatko_active {
    color: #002B42;
    border-bottom: 2px solid #96CE36;
}

.soupatko h3 {
    position: relative;
    z-index: 1;
    display: block;
    width: calc(100% + 2px);
    text-align: center;
    color: #002B42;
    background: linear-gradient(90deg, rgba(0, 43, 66, 0.44rgba(15, 68, 96, 0.459)8,96,1) 100%);
    margin: 0;
    margin-top: 10px;
    font-size: 22px;
    font-family: orbitron;
    padding-top: 15px;
    padding-bottom: 3px;
    border-top: 2px solid #002b426e;
}

.soupatko input {
    width: 80%;
    height: 30px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: Abel;
    font-size: 16px;
    color: #002B42;
    transition: all 0.2s;
    background-color: #96CE36;
}
.soupatko output {
    font-family: orbitron;
    padding-top: 5px;
    padding-left: 15px;
    padding-right: 15px;

}
.soupatko input[type=range] {
    -webkit-appearance: none;
    width: 75%;
    height: 10px;
}

.soupatko input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    box-shadow: 1px 1px 1px #000000;
    background: #96CE36;
    border-radius: 5px;
    border: 1px solid #96CE36;
}

.soupatko input[type=range]::-webkit-slider-thumb {
    box-shadow: 1px 1px 1px #000000;
    border: 1px solid #ccc;
    height: 20px;
    width: 40px;
    border-radius: 10px;
    background: #002B42;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -6px; /* Adjust this to center the thumb */
}

.soupatko input[type=range]:focus {
    outline: none;
}

.soupatko input[type=range]:focus::-webkit-slider-runnable-track {
    background: #96CE36;
}

/* For Firefox */
.soupatko input[type=range]::-moz-range-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    box-shadow: 1px 1px 1px #000000;
    background: #96CE36;
    border-radius: 5px;
    border: 1px solid #96CE36;
}

.soupatko input[type=range]::-moz-range-thumb {
    box-shadow: 1px 1px 1px #000000;
    border: 1px solid #96CE36;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #002B42;
    cursor: pointer;
}

.soupatko_input {
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.soupatko_next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 30px;
    font-weight: bold;
    margin-top: 15px;
    cursor: pointer;
    font-size: 36px;
    padding-bottom: 5px;
    transition: all 0.3s;
}
.soupatko_next i {
    margin-left: 20px;
    margin-right: 20px;
    transition: all 0.3s;
    color: #96CE36;
    animation: oscillateMargins 0.6s infinite alternate;
}

.soupatko_next:hover {
    color: #96CE36;
}

.soupatko_next:hover i {
    color: #002B42;
}

@keyframes oscillateMargins {
    0% {
        margin-left: 20px;
        margin-right: 20px;
    }
    100% {
        margin-left: 5px;
        margin-right: 5px;
    }
}

#ramValue {
    width: 100px;
    position: absolute;
    left: 115px;
}
#obj_link {
    position: absolute;
    left: 50%;
    top: 90px;
    transform: translateX(-50%);
}

#czkValue {
    width: auto;
    font-size: 20px;
    text-align: center;
    padding: 0;
    padding-top: 5px;
    padding-left: 15px;
    padding-right: 15px;
    position: absolute;
    right: 130px;
    background-color: #96ce3671;
}

#login_btn {
    font-family: Oswald;
    font-weight: normal;
}

.copyright {
    text-align: center;
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 700px;
    color: whitesmoke;
    font-size: 12px;
    font-family: Abel;
    transform: translateX(-50%);
}
.copyright a {
    color: #96CE36;
    text-decoration: underline;
    transition: all 0.2s;
}
.copyright a:hover {
    color: #587920;
}

.platform_infos {
    width: 100%;
    height: 300px;
    margin-top: 80px;

}

.platform_infos_right {
    width: 52%;
    height: 120%;
    border-left: 2px solid #96CE36;
    margin-left: -45px;
}
.platform_infos_left {
    width: 52%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}
.platform_infos_img {
    width: 410px;
    /*height: 427px;*/
}

.pir_tit {
    color: #002B42;
    font-family: orbitron;
    margin: 20px;
    font-size: 26px;
}
.pir_text {
    width: calc(100% - 40px);
    height: 230px;
    border: 2px solid #96CE36;
    border-top: 6px solid #96CE36;
    border-right: 3px solid #96CE36;
    border-left: 0;
    padding: 20px;
    color: white;
    background: rgb(0,43,66);
    background: linear-gradient(90deg, rgba(0,43,66,1) 0%, rgba(15,68,96,1) 100%);
    font-family: Abel;
    box-shadow: 4px 4px 5px 2px rgba(0,0,0,0.35);
    font-family: 'Oswald';
    font-weight: 350;
}

.moreft {
    width: 100%;
    padding-top: 100px;
}

.moreft_frame {
    width: 100%;
    margin: auto;
    margin-top: 40px;
    min-height: 200px;
    display: block  ;
    align-items: stretch;
    justify-content: space-between;
}

.moreft_left {
    width: 100%;
    border-right: 2px solid #96CE36;
    background-color: #F1F1F1;
}
.moreft_tit {
    margin-bottom: 20px;
    margin-top: -20px;
    font-family: 'Oswald';
    font-weight: 200;
    font-size: 18px;
}
.tit_tit {
    width: 100%;
    text-align: center;
    font-size: 30px;
    font-family: orbitron;
    color: #002B42;
    padding-bottom: 20px;
}
.moreft_item {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #96CE36;
    font-family: sans-serif;
    font-size: 20px;
    display: flex;
    cursor: pointer;
    align-items: stretch; /* Ensure children take the same height */
}
.moreft_item:hover {
    background-color: rgba(255,255,255,0.1);
}
.moreft_item_nr {
    width: 80px;
    display: flex;
    align-items: center; /* Center the content vertically */
    justify-content: center; /* Center the content horizontally */
    font-family: Abel;
    font-weight: bold;
    background-color: #002B42;
    color: #96CE36;
    padding-top: 5px;
    padding-bottom: 5px;
    border-right: 2px solid #96CE36;
}
.moreft_item_question {
    width: calc(100% - 120px);
    padding: 5px;
    padding-left: 20px;
    height: auto;
    font-size: 16px;
    display: block;
    font-family: "Roboto Condensed";
}
.moreft_item:hover .moreft_item_nr {
    background-color: #043854;
}
.moreft_item:hover .moreft_item_question {
    background-color: #e4e4e4;
}

.moreft_item_sipicka {
    width: 30px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    background-color: #ebebeb;
}
.moreft_item_sipicka i {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}
.moreft_item_sipicka.active {
    background-color: #96CE36;
}
.moreft_item_question.active {
    font-weight: bold;
    background-color: #e4e4e4;
}
.moreft_item_nr.active {
    background-color: #043854;
}

.for_admin {
    width: 100%;
    min-height: auto;
    display: flex;
}
.for_admini_img {
    width: 70%;
}
.for_admin div img {
    width: 100%;
    transform: rotate(-5deg);
}
.text_for_admini {
    width: 30%;
}



.faq_bg {
    position: absolute;
    top: 92%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0.1;
}

.question_faq {
    width: 100%;
    margin-top: 5px;
    display: flex;
    align-items: center;
    color: #002B42;
}
.q_answer {
    display: none;
    font-weight: normal;

}
.rotate {
    transform: rotate(180deg);
}

.moreft_tit2 {
    margin-bottom: 20px;
    padding-top: 50px;
    font-family: 'Oswald';
    font-weight: 200;
    font-size: 18px;
}

.split_mac {
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.splited_text {
    width: 35%;
    font-family: 'Oswald';
    font-weight: 300;
    font-size: 18px;
    color: #002B42;
}
.splited_contact_form_mac {
    width: 60%;
    height: 360px;
    position: relative;
    /*background: url('/static/img/macw2.png') no-repeat center center;*/
    background-size: contain;
    background-color: #0F4460;
    background: rgb(0,43,66);
    background: linear-gradient(270deg, rgba(0,43,66,1) 0%, rgba(15,68,96,1) 100%);
    padding: 20px;
    box-sizing: border-box;
    font-family: 'Oswald';
    font-weight: 350;
    padding-bottom: 20px;
    border-radius: 20px;
    transition: all 0.3s;
    /*box shadow*/
    box-shadow: 0px 3px 9px 3px rgba(0,0,0,0.75); 
}
.splited_contact_form_mac label {
    font-size: 20px;
}
.splited_contact_form_mac form {
    width: 100%;
    height: auto;
}
.top_of_form {
    width: 100%;
    margin-top: 20px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top_of_form div {
    font-family: 'Oswald';
    font-weight: 300;
}
.top_of_form div input {
    padding: 3px;
    padding-left: 15px;
    padding-right: 15px;
    border: 1px solid #c7c7cc;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) inset;
    height: 25px;
    font-size: 18px;
    outline: none;
}
.top_of_form div select {
    padding: 3px;
    padding-left: 15px;
    padding-right: 15px;
    border: 1px solid #c7c7cc;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) inset;
    height: 34px;
    font-size: 18px;
    outline: none;
    width: 200px;
}
.bottom_of_form {
    width: 87%;
    margin: auto;
    height: 200px;
    font-family: 'Oswald';
    font-weight: 300;
    margin-top: 2%;
}
.bottom_of_form label {
    font-size: 20px;
    margin-top: 30px;
    color: #002B42;
}
.bottom_of_form textarea {
    width: 99%;
    min-width: 99%;
    height: 100px;
    min-height: 100px;
    border: 1px solid #c7c7cc;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) inset;
    font-size: 18px;
    outline: none;
}
.bottom_of_form input[type=submit] {
    width: 100%;
    height: 30px;
    border: 1px solid #659e03;
    margin-top: 15px;
    cursor: pointer;
    border-radius: 5px;
    background: linear-gradient(to bottom, #96CE36, #689F38);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) inset;
    font-size: 18px;
    outline: none;
    color: whitesmoke;
    font-family: Abel;
    font-weight: bold;
    transition: all 0.2s;
}
.bottom_of_form input[type=submit]:hover {
    font-size: 15px;
}
.for_checkbox {
    display: flex;
    margin-top: 10px;
    align-items: center;
}
.splited_contact_form_mac img {
    position: absolute;
    left: 50%;
    top: 49%;
    opacity: 0.9;
    transform: translate(-50%, -50%) scaleX(-1);
}
/*.splited_contact_form_mac div {
    position: absolute;
    left: 50%;
    top: 69%;
    font-family: Abel;
    color: #0a466764;
    text-transform: uppercase;
    text-align: center;
    transform: translate(-50%, -50%);
}*/

.login {
    display: none;
    position: absolute;
    width: 318px;
    height: auto;
    border: 2px solid #96CE36;
    border-left: 1px solid #96CE36;
    border-right: 0;
    border-top: 0;
    top: 79px;
    right: 0px;
    z-index: 100;
    padding-bottom: 10px;
    font-family: Oswald;
    background: rgb(0,43,66);
    background: linear-gradient(25deg, rgba(0,43,66,1) 0%, rgba(15,68,96,1) 100%);
}
.login_item_title {
    font-family: Abel;
    font-size: 28px;
    padding-left: 20px;
    padding-top: 0px;
    color: #96CE36;
}
.login_item_desc {
    padding-left: 20px;
    padding-right: 10px;
    font-family: Oswald;
    color: #ccc;
    font-size: 14px;
}
.login_item_form {
    width: calc(100% - 40px);
    margin: auto;
}
.login_item_form input {
    width: calc(98% - 20px);
    height: 30px;
    border: 1px solid #ccc;
    margin-top: 10px;
    border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
    outline: none;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3) inset;
}
.login_item_form input[type=submit] {
    width: 274.4px;
    height: 30px;
    border: 1px solid #659e03;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 10px;
    background: linear-gradient(to bottom, #96CE36, #689F38);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) inset;
    font-size: 18px;
    outline: none;
    color: whitesmoke;
    font-family: Abel;
    font-weight: bold;
    transition: all 0.2s;
}
.login_item_form input[type=submit]:hover {
    font-size: 16px;
}
.login_error {
    display: none;
    margin: auto;
    color: red;
    font-family: Abel;
    margin-top: 2px;
    margin-left: 3px;
}


.registration {
    display: none;
    position: absolute;
    width: 318px;
    height: auto;
    border: 2px solid #96CE36;
    border-left: 1px solid #96CE36;
    border-right: 0;
    border-top: 0;
    top: 79px;
    right: 0px;
    z-index: 100;
    padding-bottom: 10px;
    background: rgb(0,43,66);
    background: linear-gradient(25deg, rgba(0,43,66,1) 0%, rgba(15,68,96,1) 100%);
}
.registration_left_item_title {
    font-family: Abel;
    font-size: 28px;
    padding-left: 20px;
    padding-top: 0px;
    color: #96CE36;
}
.registration_left_item_desc {
    padding-left: 20px;
    padding-right: 10px;
    font-family: Oswald;
    color: #ccc;
    font-size: 14px;
}

.registration_left_item_desc a {
    color: #96CE36;
    text-decoration: underline;
}

.registration_left_item_form {
    width: calc(100% - 40px);
    margin: auto;
}
.registration_left_item_form input[type=email] {
    width: calc(98% - 20px);
    height: 30px;
    border: 1px solid #ccc;
    margin-top: 10px;
    border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
    outline: none;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3) inset;
}
.registration_left_item_form button {
    width: 274.4px;
    height: 30px;
    border: 1px solid #659e03;
    margin-top: 5px;
    cursor: pointer;
    border-radius: 10px;
    background: linear-gradient(to bottom, #96CE36, #689F38);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) inset;
    font-size: 18px;
    outline: none;
    color: whitesmoke;
    font-family: Abel;
    font-weight: bold;
    transition: all 0.2s;
}
.registration_left_item_form button:hover {
    font-size: 16px;
}
.reg_error {
    display: none;
    margin: auto;
    color: red;
    font-family: Abel;
    margin-top: 2px;
    margin-left: 3px;
}
#scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgb(0,43,66);
    background: linear-gradient(25deg, rgba(0,43,66,1) 0%, rgba(15,68,96,1) 100%);
    color: #96CE36;
    border-radius: 5px;
    border: 2px solid #659e03;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: normal;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
#scrollToTop:hover {
    font-size: 20px;
}

.profile_edit_login {
    width: 100%;
    height: 100%;
    display: block;
}
.profile_edit_title {
    width: calc(100% - 15px);
    padding-left: 15px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: left;
    font-family: orbitron;
    font-size: 24px;
    color: #002B42;
    color: #96CE36;
    text-shadow: 1px 1px 1px #000000;
}
.profile_edit_content {
    width: 100%;
    height: auto;
    padding-left: 20px;
    position: relative;
    padding-bottom: 20px;
}
.profile_edit_item {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Oswald;
    font-size: 18px;
    color: #002b42a9;
    margin-top: 10px;
}
.profile_edit_item input {
    width: 55%;
    height: 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    margin-right: 50px;
    cursor: default;
    outline: none;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3) inset;
}
.profile_edit_item2 {
    width: auto;
    height: auto;
    font-family: Oswald;
    font-size: 18px;
    color: #002b42a9;
    margin-top: 10px;
}
.profile_edit_item2 input {
    width: 90%;
    height: 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    margin-right: 50px;
    outline: none;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3) inset;
}
.login_password {
    width: 55%;
    height: 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    margin-right: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: whitesmoke;
    cursor: pointer;
    transition: all 0.2s;
    background: linear-gradient(to bottom, #96CE36, #689F38);
    outline: none;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3) inset;
}
.login_password:hover {
    font-size: 15px;
}
.mfa {
    width: 100%;
    height: 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    margin-right: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: whitesmoke;
    cursor: pointer;
    transition: all 0.2s;
    background: linear-gradient(to bottom, #96CE36, #689F38);
    outline: none;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3) inset;
}
.mfa:hover {
    font-size: 17px;
}
.vsuv {
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    margin-top: 10px;
    position: absolute;
    bottom: 55px;
    left: 25px;
    font-family: Oswald;
    font-size: 12px;
    color: darkred;
}

.profile_edit_info {
    width: 100%;
    height: auto;
    display: none;
}
.moreuser {
    width: 100%;
    height: auto;
    color: #002b42a9;
    margin-top: 10px;
}
.amimore {
    width: calc(100% - 45px);
    padding-left: 15px;
    height: auto;
    font-family: Oswald;
    background-color: #96ce3669;
    display: flex;
    margin-top: 15px;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-top: 1px solid #96CE36;
}
.amimore i {
    margin-right: 15px;
}
.moreusercontent {
    width: 99%;
    height: auto;
    display: none;
    font-family: Oswald;
    color: #002b42a9;
}
.profile_edit_souhlasy {
    width: 100%;
    height: auto;
    display: none;
}
.top_right_item.active {
    border-left: 10px solid #96CE36;
    width: calc(100% - 10px);
    background-color: #002B42;
    color: white;
}
.profile_edit_content_souhlasy_item {
    width: calc(100% - 40px);
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
}
.for_checkbox2 {
    width: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
}
.for_checkbox2 input[type=checkbox] {
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-right: 10px;
}
.for_label {
    width: calc(100% - 80px);
    padding-left: 20px;
    padding-right: 20px;
    font-family: Oswald;
    border-left: 1px solid #96CE36;
}
.mfa_modal {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.45);
}
.mfa_modal_content {
    width: 500px;
    height: auto;
    min-height: 200px;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #96CE36;
}
.mfa_modal_title {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: orbitron;
    font-size: 24px;
    color: #002B42;
}
.mfa_modal_text {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Oswald;
    font-size: 18px;
    color: #002b429a;
    margin-top: 20px;
}
.mfa_modal_input {
    width: 100%;
    height: auto;
    text-align: center;
}
.mfa_modal_input label {
    font-family: Oswald;
    font-size: 18px;
    color: #002b429a;
    margin-right: 10px;
}
.mfa_modal_input input {
    width: 400px;
    height: 30px;
    border: 1px solid #c4c4c4;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    outline: none;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3) inset;
}
.mfa_modal_buttons {
    width: calc(100% - 80px);
    height: 50px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.mfa_modal_button {
    width: 150px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Oswald;
    font-size: 18px;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    background: linear-gradient(to bottom, #96CE36, #689F38);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) inset;
    transition: all 0.2s;
}
#mfa_modal_button_cancel {
    background: linear-gradient(to bottom, #c02e29, #a7531b);
}
.mfa_modal_button:hover {
    font-size: 16px;
}
#no_mfa_btn {
    background: linear-gradient(to bottom, #c02e29, #a7531b);
}
.mfa_response {
    width: 100%;
    height: auto;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: Oswald;
    font-size: 14px;
    color: #002b429a;
    text-align: center;
}
.mfa_error {
    display: none;
    color: red;
    margin-top: 5px;
    margin-left: 10px;
    font-size: 12px;
}
#confirm_disable_mfa {
    padding-left: 20px;
    height: 30px;
    padding-right: 20px;
    margin-left: 30px;
    border-radius: 10px;
    color: whitesmoke;
    display: flex;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) inset;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    background: linear-gradient(to bottom, #96CE36, #689F38);
}
#cancel_disable_mfa {
    padding-left: 20px;
    height: 30px;
    padding-right: 20px;
    margin-left: 20px;
    border-radius: 10px;
    color: whitesmoke;
    display: flex;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) inset;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    background: linear-gradient(to bottom, #c02e29, #a7531b);
}
#confirm_disable_mfa:hover {
    background: linear-gradient(to top, #96CE36, #689F38);
}
#cancel_disable_mfa:hover {
    background: linear-gradient(to top, #c02e29, #a7531b);
}

.server_each {
    width: 95%;
    height: 80px;
    margin: auto;
    display: flex;
    align-items: center;
    font-family: Oswald;
    font-size: 18px;
    color: #002b42a9;
    margin-top: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #e7e7e7;
    cursor: pointer;
}
.server_each:hover {
    box-shadow: 0 0px 5px 2px rgba(0, 0, 0, 0.3);
    /*border-bottom: 2px solid #96CE36;*/

}
.server_ico {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background-color: #d8d8d8;
}
.server_name2 {
    width: calc(300px - 20px);
    max-width: 300px;
    padding-left: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: left;
    font-size: 20px;
    color: #002b42a9;
    white-space: normal; 
    word-wrap: break-word; 
    overflow-wrap: break-word;
    word-break: break-all; 
}

.server_ip2 {
    padding-left: 15px;
    padding-right: 15px;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #002b42a9;
    font-weight: normal;
}
.server_stats {
    width: 250px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: #002b42a9;
    font-weight: normal;
    margin-left: 30px;
}
.server_stats_item {
    min-width: 60px;
    height: 80px;
}
.server_status {
    width: 35px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}
.green_status {
    width: 6px;
    height: 70px;
    margin-left: 20px;
    border-radius: 10px;
    border: 1px solid #659e03;
    background: linear-gradient(to left, #96CE36, #689F38);
}
.yellow_status {
    width: 6px;
    height: 70px;
    margin-left: 20px;
    border-radius: 10px;
    border: 1px solid #F9E64B;
    background: linear-gradient(to left, #F9E64B, #F7D358);
}
.red_status {
    width: 6px;
    height: 70px;
    margin-left: 20px;
    border-radius: 10px;
    border: 1px solid #c02e29;
    background: linear-gradient(to left, #c02e29, #a7531b);
}
.server_usage {
    margin-top: -3px;
}
.noservers {
    width: 100%;
    font-family: Oswald;
    font-size: 20px;
    color: #002b42a9;
    text-align: center;
    margin-top: 20px;
}
.server_admin {
    width: 100%;
    height: auto;
    min-height: 300px;
    display: flex;
    justify-content: space-between;
}

.server_admin_right {
    width: 30%;
    height: auto;
    min-height: 100px;
}
.server_current_stats {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Oswald;
    font-size: 20px;
    color: #002b42a9;
    margin-top: 20px;
    margin-bottom: 20px;
}
.server_current_stats_item {
    width: 23%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: left;
    background: linear-gradient(to bottom, #F1F1F1, #FFFFFF);
    border-top: 1px solid #b9b9b9;
    border-top: 2px solid #96CE36;
    border-radius: 10px;
}
.server_current_stats_item_icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border: 1px solid #b9b9b9;
    background-color: #d8d8d8;
    background-color: white;
    border-radius: 10px;
    margin-right: 10px;
    margin-left: 10px;
}
.server_admin_left {
    width: 69%;
    height: auto;
    min-height: 100px;
}
.server_admin_frame {
    width: 100%;
    height: auto;
}
.server_admin_title {
    width: calc(100% - 26px);
    height: 30px;
    font-family: orbitron;
    display: flex;
    align-items: center;
    color: whitesmoke;
    padding-left: 20px;
    background-color: #002B42;
    border-bottom: 2px solid #96CE36;
    border-left: 6px solid #96CE36;
}
.server_admin_content {
    width: 100%;
    height: 350px;
    font-family: Oswald;
    font-size: 18px;
    color: #002b42a9;
    background-color: black;
    overflow: auto;
    padding-top: 10px;
    padding-bottom: 5px;
}
.console_output_item {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    height: auto;
    display: flex;
    justify-content: left;
    padding: 2px;
    padding-left: 10px;
    padding-right: 0;
    font-size: 14px;
}
.console_who {
    color: #96CE36;
    font-family: "Ubuntu Mono";
    margin-right: 15px;
    font-size: 14px;
}
.console_msg {
    color: white;
    width: 500px;
    max-width: 500px;
    font-family: "Ubuntu Mono";
    word-wrap: break-word; 
}
.server_admin_cmd {
    width: calc(100% - 10px);
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 2px;
    padding-left: 10px;
    padding-right: 0;
    font-size: 16px;
    border-top: 1px solid #96CE36;
    background-color: rgb(32, 32, 32);
}
#whocmd {
    width: 125px;
    height: 25px;
    display: flex;
    align-items: center;
}
.console_input {
    width: 400px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 2px;
    padding-right: 0;
    font-size: 16px;
    background-color: rgb(32, 32, 32);;
    outline: none;
    border: none;
    color: white;
    font-family: "Ubuntu Mono";
}
.sendcmd {
    width: 80px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #96CE36;
    font-family: "Ubuntu Mono";
    cursor: pointer;
    transition: all 0.2s;
    background-color: #202020;
    border: none;
    outline: none;
}
.sendcmd:hover {
    color: #689F38;
}

.power_actions {
    width: 100%;
    height: 125px;
    margin-bottom: 15px;
    text-align: right;
}
.power_actions_item {
    width: calc(100% - 43px);
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Oswald;
    font-size: 18px;
    color: whitesmoke;
    border: 1px solid red;
    border: 2px solid #002B42;
    border: 2px solid #96CE36;
    border-left: 6px solid #96CE36;
    
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0 5px 5px 0;
    margin-bottom: 5px;
    transition: all 0.3s;
    background: rgb(0,43,66);
    background: linear-gradient(90deg, rgba(0,43,66,1) 0%, rgba(15,68,96,1) 100%);
    cursor: pointer;
}

.power_actions_item:hover {
    font-size: 16px;
    box-shadow: 0 0px 5px 2px rgba(0, 0, 0, 0.3);
}
.start:hover {
    color: #96CE36;
}
.restart:hover {
    color: orange;
}
.stop:hover {
    color: red;
}

.srv_main_title {
    width: calc(100% - 50px);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: orbitron;
    font-size: 24px;
    color: #002B42;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 20px;
    border-radius: 10px 0 0 10px;
    border-bottom: 2px solid #96CE36;
    border-top: 2px solid #002B42; 
}
.uuid_srv {
    color: #96CE36;
    display: flex;
    text-shadow: 1px 1px 1px #002B42;
}
.basics {
    width: 655px;
    height: auto;
    display: flex;
    align-items: center;
    min-height: 20px;
    margin-top: -1px;
    margin-left: 291px;
    border: 1px solid red;
    background-color: #96ce3628;
    border-radius: 0 0 5px 5px;
    border: 2px solid #96CE36;
}
.basics_ip {
    width: 200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Oswald;
    font-size: 16px;
    color: #002b42;
}
.basics_game {
    width: 150px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Oswald;
    color: #002b42;
}
.basics_next_payment {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    font-family: Oswald;
    color: #002b42;
}
.basics_next_payment div {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    font-family: Oswald;
    color: #002b42;
    margin-left: 40px;
}
#variables_content {
    height: 380px;
    background-color: #EDEDED;
    border: 1px solid #002B42;
    border-left: 1px solid #96CE36;
    border-top: 0;
    width: 658px;
}
#subusers_content {
    height: 380px;
    background-color: #EDEDED;
    border: 1px solid #002B42;
    border-left: 1px solid #96CE36;
    border-top: 0;
    width: 658px;
}
#basics_content {
    height: 380px;
    background-color: #EDEDED;
    border: 1px solid #002B42;
    border-left: 1px solid #96CE36;
    border-top: 0;
    width: 658px;
}
#backups_content {
    height: 380px;
    background-color: #EDEDED;
    border: 1px solid #002B42;
    border-left: 1px solid #96CE36;
    border-top: 0;
    width: 658px;
}
#variables {
    display: none;
}
#schedule {
    display: none;
}
#subusers {
    display: none;
}
#basics {
    display: none;
}
#backups {
    display: none;
}

.variable_item {
    width: calc(100% - 40px);
    height: auto;
    font-family: Oswald;
    font-size: 18px;
    color: #002b42a9;
    margin-top: 10px;
    margin-left: 10px;
    padding: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    background-color: #B8C2C7;
    border-radius: 10px;
    border: 1px solid #002b424f;
}
.variable_item_java {
    width: calc(100% - 40px);
    height: auto;
    font-family: Oswald;
    font-size: 18px;
    color: #002b42a9;
    margin-top: 10px;
    margin-left: 10px;
    padding: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    background-color: #B8C2C7;
    border-radius: 10px;
    border: 1px solid #002b424f;
}
.variable_input {
    width: calc(100% - 20px);
    height: 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    outline: none;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3) inset;
}

.variable_name {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
.variable_desc {
    font-family: Abel;
    font-size: 14px;
    color: #002b42;
    margin-left: 5px;
}
.save_changes_btn {
    width: 90%;
    height: 25px;
    border: 1px solid #659e03;
    margin-top: 15px;
    margin-left: 5%;
    margin-bottom: 10px;
    cursor: pointer;
    border-radius: 15px;
    background: linear-gradient(to bottom, #96CE36, #689F38);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) inset;
    font-size: 16px;
    outline: none;
    color: whitesmoke;
    font-family: Oswald;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.save_changes_btn:hover {
    font-size: 15px;
}

#schedule_content {
    height: 380px;
    background-color: #EDEDED;
    border: 1px solid #002B42;
    border-left: 1px solid #96CE36;
    border-top: 0;
    width: 658px;
}
.schedule_item {
    width: calc(100% - 40px);
    height: auto;
    font-family: Oswald;
    font-size: 18px;
    color: #002b42a9;
    margin-top: 10px;
    margin-left: 10px;
    padding: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    background-color: #002b421e;
    border-radius: 10px;
    border: 1px solid #ccc;
    display: flex;
    align-items: stretch;
    transition: all 0.3s;
    cursor: pointer;
}
.schedule_item_none {
    width: calc(100% - 40px);
    height: auto;
    font-family: Oswald;
    font-size: 18px;
    color: #002b42a9;
    margin-top: 10px;
    margin-left: 10px;
    padding: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    background-color: #002b421e;
    border-radius: 10px;
    border: 1px solid #ccc;
    display: flex;
    align-items: stretch;
    transition: all 0.3s;
}
.schedule_ico {
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    padding-top: 5px;
    margin-left: -10px;
}
.schedule_container {
    width: calc(100% - 80px);
}
.schedule_name {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Oswald;
    font-size: 18px;
    border-bottom: 1px solid #ccc;
}
.schedule_active {
    color: green;
}
.schedule_inactive {
    color: red;
}
.schedule_cron {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Oswald;
    font-size: 18px;
    margin-top: 10px;
}
.cron_item {
    width: auto;
    min-width: 50px;
    min-height: 10px; /* Changed from fixed height to min-height */
    padding: 10px; /* Added padding for internal spacing */
    padding-top: 0;
    padding-bottom: 0;
    box-sizing: border-box; /* Ensure padding and border are included in width/height */
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden; /* Prevent content overflow */
    text-overflow: ellipsis; /* Handle overflowing text */
    white-space: nowrap; /* Prevent text wrapping */
    border-left: 0;
    border: 0;
}
.schedule_runs {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Oswald;
    font-size: 14px;
}
.schedule_item:hover {
    color: #002b42;
    box-shadow: 0 0px 5px 2px rgba(0, 0, 0, 0.3);
}
.create_new_schedule {
    width: 90%;
    height: 25px;
    border: 1px solid #659e03;
    background: linear-gradient(to bottom, #96CE36, #689F38);
    margin-top: 15px;
    margin-left: 5%;
    margin-bottom: 10px;
    cursor: pointer;
    border-radius: 15px;
    
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) inset;
    font-size: 16px;
    outline: none;
    color: whitesmoke;
    font-family: Oswald;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.create_new_schedule:hover {
    font-size: 15px;
}

.new_schedule_name {
    width: calc(100% - 15px);
    height: auto;
    margin-left: 15px;
}
.new_schedule_name label {
    margin-top: 10px;
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: 10px;
}
.new_schedule_input {
    width: calc(100% - 40px);
    height: 30px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 10px;
    outline: none;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3) inset;
}
.new_schedule_crons {
    width: calc(100% - 55px);
    height: 80px;
    margin-left: 25px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.new_schedule_cron_item {
    width: 115px;
    height: 100%;
    border: 1px solid red;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #002b421e;
    transition: all 0.3s;
}
.cron_item_name {
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Oswald;
    font-size: 16px;
    color: #002b42a9;
}
.cron_item_input {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cron_item_inputfield {
    width: 80%;
    height: 40px;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    outline: none;
}
.cron_action_item {
    width: calc(100% - 55px);
    height: 50px;
    margin-left: 25px;
    margin-top: 20px;
    border: 1px solid #ccc;
    background-color: #002b421e;
}
.for_toggle {
    width: 100px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}
.cron_toggle {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.toggle-input {
	display: none;
  }
  
.toggle-label {
	display: block;
	position: relative;
	width: 60px;
	height: 30px;
	background-color: #ccc;
	border-radius: 15px;
	cursor: pointer;
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2); /* Add inset box-shadow */
}  

.toggle-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	transition: margin 0.3s, background-color 0.3s;
}

.toggle-input:checked + .toggle-label .toggle-button {
	margin-left: 30px;
	background: linear-gradient(45deg, #92C935, #559c1f);
}
.toggle-input:checked + .toggle-label {
	background-color: #CCCCCC;
}
.toggle_info {
    width: 505px;
    height: 100%;
}
.toggle_desc {
    font-size: 14px;
}

.cheatsheet_tit {
	display: flex; 
	width: 100%;
	justify-content: space-between;
	background-color: #ccc;
	border-bottom: 1px solid white;
}
.cheatsheet_tit div {
	width: 49%;
	font-family: orbitron;
	padding-left: 1%;
	display: flex;
	align-items: center;
	height: 30px;
	color: #002b42a1;
}
.cheatsheet_cont {
	width: 100%;
	display: flex; 
	justify-content: space-between;
}
.cheatsheet_cont .ch_cont_item {
	width: 49%;
	font-family: orbitron;
	padding-left: 1%;
	align-items: center;
	height: 30px;
	color: grey;
}
.cheatsheet_cont_item {
	display: flex;
	width: 100%;
	height: 40px;
	justify-content: space-between;
}
.cheatsheet_cont_item div {
	width: 49%;
	font-family: orbitron;
	padding-left: 1%;
	display: flex;
	align-items: center;
	font-size: 14px;
	border-bottom: 2px solid #ccc;
}
.new_schedule_btns {
    width: calc(100% - 55px);
    height: 20px;
    margin-left: 25px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.new_schedule_btn_cancel {
    width: 49%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    color: #002B42;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}
.new_schedule_btn_cancel:hover {
    font-size: 15px;
}
.new_schedule_btn_delete {
    width: 49%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    color: darkred;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}
.new_schedule_btn_delete:hover {
    font-size: 15px;
}


.new_schedule_btn_save {
    width: 49%;
    height: 100%;
    border: 1px solid #659e03;
    background: linear-gradient(to bottom, #96CE36, #689F38);
    display: flex;
    align-items: center;
    justify-content: center;
    color: whitesmoke;
    border-radius: 10pt;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.new_schedule_btn_save:hover {
    font-size: 15px;
}	
.for_schedule_tasks {
    width: 100%;
    height: auto;
}
.task_item {
    width: calc(100% - 40px);
    height: auto;
    font-family: Oswald;
    font-size: 16px;
    color: #002b42a9;
    margin-top: 10px;
    margin-left: 15px;
    padding: 5px;
    background-color: #002b421e;
    border-radius: 5px;
    border: 1px solid #ccc;
    transition: all 0.3s;
    display: flex;
    align-items: stretch;
    cursor: default;
}
.task_item:hover {
    color: #002b42;
    box-shadow: 0 0px 5px 2px rgba(0, 0, 0, 0.3);
}
.task_icon {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #96CE36;
    text-shadow: 1px 1px 1px #002B42;
}
.task_content {
    width: calc(100% - 100px);
}
.task_item .task_title {
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Oswald;
    font-size: 16px;
}
.cof {
    padding: 3px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
    background-color: #ce7f3669;
    color: #002b42e1;
    font-size: 14px;
}
.task_payload {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Oswald;
    font-size: 16px;
}
.task_details {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.delete_task {
    height: 30px;
    display: flex;
    align-items: center;
    color: rgba(139, 0, 0, 0.575);
    transition: all 0.3s;
    cursor: pointer;
}
.delete_task:hover {
    color: red;
}
.create_new_task {
    width: 50%;
    height: 20px;
    border: 1px solid #659e03;
    background: linear-gradient(to bottom, #96CE36, #689F38);
    margin-top: 15px;
    margin-left: 25%;
    margin-bottom: 10px;
    cursor: pointer;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) inset;
    font-size: 14px;
    outline: none;
    color: whitesmoke;
    font-family: Oswald;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.create_new_task:hover {
    font-size: 13px;
}
.task_type {
    border: none;
    border-bottom: 2px solid #002B42;
    width: 350px;
    padding: 3px;
    padding-bottom: 0;
    font-family: Oswald;
    background-color: #B8C2C7;
    outline: none;
}

.cron_toggle2 {
	width: 40px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.toggle-input2 {
	display: none;
  }
  
.toggle-label2 {
	display: block;
	position: relative;
	width: 40px;
	height: 20px;
	background-color: #002b421e;
	border-radius: 15px;
	cursor: pointer;
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2); /* Add inset box-shadow */
}  

.toggle-button2 {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	transition: margin 0.3s, background-color 0.3s;
}

.toggle-input2:checked + .toggle-label2 .toggle-button2 {
	margin-left: 20px;
	background: linear-gradient(45deg, #92C935, #559c1f);
}
.toggle-input2:checked + .toggle-label2 {
	background-color: #002b4233;
}
.commit_task {
    color: rgba(0, 128, 0, 0.644);
    cursor: pointer;
    transition: all 0.2s;
}
.commit_task:hover {
    color: green;
}
#odklad_s_create {
    width: 40px;
    border: none;
    border-bottom: 2px solid #002B42;
    outline: none;
    background-color: #B8C2C7;
}

#payload_create_task {
    display: flex;
    align-items: center;
}

#payload_create_task_text {
    width: 230px;
    border: none;
    border-bottom: 2px solid #002B42;
    outline: none;
    background-color: #B8C2C7;
    margin-left: 5px;
    font-family: Oswald;
}
#payload_create_task_select {
    width: 100px;
    border: none;
    border-bottom: 2px solid #002B42;
    outline: none;
    background-color: #B8C2C7;
    margin-left: 5px;
    font-family: Oswald;
}

.drop_task {
    height: 30px;
    display: flex;
    align-items: center;
    color: rgba(139, 0, 0, 0.575);
    transition: all 0.3s;
    cursor: pointer;
}
.drop_task:hover {
    color: red;
}


.subuser_item {
    width: 90%;
    height: 80px;
    margin: auto;
    display: flex;
    border: 1px solid red;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #e7e7e7;
    cursor: default;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: all 0.3s;
    color: #002b42a9;
    background-color: #B8C2C7;
}
.subuser_item:hover {
    color: #002B42;
    box-shadow: 0 0px 5px 2px rgba(0, 0, 0, 0.3);
}
.subuser_avatar {
    width: 90px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-right: 1px solid #ccc;
}
.subuser_avatar img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 2px solid #96CE36;
    background-color: #EDEDED;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3) inset;
}
.subuser_content {
    width: calc(100% - 90px);
    height: 80px;
    font-family: Oswald;
    font-size: 18px;
    padding-left: 20px;
    font-size: 20px;
}
.subuser_email {
    margin-left: 15px;
    display: flex;
}
.debug_info {
    width: calc(100% - 50px);
    display: flex;
    padding-left: 15px;
    padding-right: 15px;
    align-items: center;
    justify-content: space-between;
    font-family: Oswald;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
}
.last_lane_subuser {
    width: calc(100% - 50px);
    display: flex;
    padding-left: 15px;
    padding-right: 15px;
    align-items: center;
    justify-content: space-between;
    font-family: Oswald;
    font-size: 16px;
    border-radius: 10px;
}
#delete_subuser {
    display: flex;
    align-items: center;
    color: rgba(139, 0, 0, 0.5);
    transition: all 0.3s;
    cursor: pointer;
}
#delete_subuser:hover {
    color: darkred;
}
.create_new_subuser {
    width: 70%;
    height: 25px;
    border: 1px solid #659e03;
    background: linear-gradient(to bottom, #96CE36, #689F38);
    margin-top: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    border-radius: 15px;
    margin: auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) inset;
    font-size: 16px;
    outline: none;
    color: whitesmoke;
    font-family: Oswald;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.create_new_subuser:hover {
    font-size: 15px;
}
.subuser_input {
    width: calc(100% - 115px);
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 2px;
    font-size: 16px;
    padding-left: 10px;
    padding-right: 10px;
    outline: none;
    margin-left: 15px;
    font-family: Oswald;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3) inset;
}
#privileges {
    width: 150px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 2px;
    font-size: 16px;
    font-family: Oswald;
}
#drop_creating_sub {
    display: flex;
    align-items: center;
    color: rgba(139, 0, 0, 0.5);
    transition: all 0.3s;
    cursor: pointer;
}
#drop_creating_sub:hover {
    color: darkred;
}
#ok_creating_sub {
    display: flex;
    align-items: center;
    color: rgba(0, 128, 0, 0.644);
    transition: all 0.3s;
    cursor: pointer;
}
#ok_creating_sub:hover {
    color: green;
}

.basics_item {
    width: 95%;
    height: 70px;
    margin-left: 2.5%;
    margin-top: 1.5%;
    border: 1px solid #002B42;
    background-color: #B8C2C7;
}
.basics_item2 {
    width: 59%;
    height: 70px;
    margin-top: 1.5%;
    border: 1px solid #002B42;
    background-color: #B8C2C7;
}

.basics_item3 {
    width: 39%;
    height: 70px;
    margin-top: 1.5%;
    border: 1px solid #002B42;
    background-color: #B8C2C7;
}

.db_btn_basic {
    width: auto;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: #96ce36b4;
    color: #002b42e1;
    font-size: 14px;
    margin-top: 5px;
    cursor: pointer;
    transition: all 0.3s;
}
.db_btn_basic:hover {
    font-size: 13px;
}

.db_btns {
    width: 30%;
    margin-left: 1%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn_rotate_pw {
    width: 30px;
    height: 30px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid #506C7C;
    border-radius: 10px;
    margin-top: 2px;
    cursor: pointer;
    margin-left: 30px;
    background-color: #EDEDED;
}

.btn_rotate_pw:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.btn_rotate_pw i {
    transition: all 0.8s;
}

.btn_rotate_pw:hover i {
    transform: rotate(360deg);
    color: orange;
}

.btn_delete_db {
    width: 30px;
    height: 30px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid #506C7C;
    border-radius: 10px;
    margin-top: 2px;
    cursor: pointer;
    background-color: #EDEDED;
}

.btn_delete_db:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.btn_delete_db i {
    transition: all 0.2s;
}

.btn_delete_db:hover i {
    transform: scale(1.1);
    color: red;
}

.reinstall_btn {
    width: auto;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: #96ce36b4;
    color: #002b42e1;
    font-size: 14px;
    margin-top: 5px;
    cursor: pointer;
    transition: all 0.3s;
}
.reinstall_btn:hover {
    font-size: 13px;
}

.server_admin_subtitle {
    width: calc(100% - 20px);
    height: 20px;
    font-family: orbitron;
    display: flex;
    align-items: center;
    color: whitesmoke;
    padding-left: 20px;
    font-family: Oswald;
    font-size: 14px;
    background-color: #002B42;
    border-bottom: 2px solid #96CE36;
}

.server_admin_basics_content {
    width: calc(100% - 30px);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 15px;
}

.run_sftp {
    width: 100px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: #96ce36b4;
    color: #002b42e1;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}
.run_sftp:hover {
    font-size: 13px;
}

.server_name_input {
    width: 300px;
    border: none;
    outline: none;
    border-bottom: 2px solid #002B42;
    padding-left: 10px;
    padding-right: 10px;
    font-family: Oswald;
}

.profile_change {
    font-family: Oswald;
    margin-top: 10px;
    color: rgb(255, 136, 0);
}

.backup_item {
	width: 97%;
	margin: auto;
	margin-top: 10px;
	height: 80px;
	border: 1px solid #ccc;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.4s;
    cursor: default;
    background-color: #B8C2C7;
}

.backup_icon {
	width: 15%;
	border-right: 1px solid #ccc;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: #002B42;
	transition: all 0.4s;
}

.backup_content {
	width: 85%;
	height: 100%;
	color: #002B42;
}

.backup_name {
	width: calc(100% - 40px);
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 20px;
	padding-right: 20px;
	transition: all 0.4s;
	font-family: orbitron;
}
.backup_item .backup_name i {
	opacity: 0.3;
	transition: all 0.4s;
}
.backup_item:hover .backup_name i {
	opacity: 0.8;
}

.backup_sha {
	width: calc(100% - 40px);
	height: 20px;
	display: flex;
	justify-content: space-between !important;
	align-items: center;
	padding-left: 20px;
	padding-right: 20px;
	font-family: sans-serif;
	font-size: 12px;
	transition: all 0.4s;
}

.backup_btns {
	width: 100%;
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #ccc;
}
.backup_btns div {
	width: 25%;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: orbitron;
	font-size: 12px;
	cursor: pointer;
	transition: all 0.4s;
}
.backup_download:hover {
	color: #e100ff !important;
}
.backup_restore:hover {
	color: green !important;
}
.backup_lock:hover {
	color: orange !important;
}
.backup_delete:hover {
	color: red !important;
}

.create_new_backup {
    width: 90%;
    height: 25px;
    border: 1px solid #659e03;
    background: linear-gradient(to bottom, #96CE36, #689F38);
    margin-top: 15px;
    margin-left: 5%;
    margin-bottom: 10px;
    cursor: pointer;
    border-radius: 15px;
    
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) inset;
    font-size: 16px;
    outline: none;
    color: whitesmoke;
    font-family: Oswald;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.create_new_backup:hover {
    font-size: 15px;
}
.no_backups {
    width: 100%;
    text-align: center;
    font-family: Oswald;

}

.backup_item:hover .backup_icon,.backup_item:hover .backup_name,.backup_item:hover .backup_sha {
	color: black;
}
.backup_item:hover {
	border: 1px solid grey;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}
.backup_item:hover .backup_icon {
	border-right: 1px solid grey;
}
.backup_item:hover .backup_btns div {
	color: black;
}





.order_way {
    width: 100%;
    height: 50px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(168, 168, 168);
    cursor: default;
    border-bottom: 1px solid rgb(224, 224, 224);
}
.order_way_item {
    display: flex;
    align-items: center;
    justify-content: center;
}
.order_lane {
    width: 50px;
    height: 5px;
    background-color: rgb(194, 194, 194);
    margin-left: 10px;
}
.ol_active {
    background-color: #96CE36;
}
.circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgb(194, 194, 194);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: whitesmoke;
    font-family: Oswald;
}
.circle_active {
    color: #002B42;
    background-color: #96CE36;
}
.ntc_active {
    color: #002B42;
}
.ntc_active_border {
    border-bottom: 2px solid #96CE36;
}
.name_to_circle {
    font-size: 16px;
    font-family: Oswald;
    margin-left: 5px;
}

.ordered_item {
    width: 90%;
    height: auto;
    padding: 2%;
    margin: auto;
    margin-top: 0px;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    cursor: default;
}
.ordered_item_img {
    width: 190px;
    height: 270px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
}
.ordered_item_img img {
    width: 186px;
    height: 266px;
    border-radius: 5px;
    border: 2px solid #002B42;
    background-color: #EDEDED;
}

.ordered_item_info {
    width: calc(100% - 220px);
    height: auto;
    padding-left: 20px;
    margin-left: 20px;
    border-radius: 5px;
    padding-bottom: 60px;
    background-color: rgb(241, 241, 241);
}
.ordered_item_info_title {
    width: 100%;
    display: flex;
    align-items: center;
    font-family: Oswald;
    position: relative;
    margin-top: 10px;
}
.ordered_item_info_title .herniserver {
    font-size: 14px;
    margin-top: 7px;
}
.ordered_item_info_title .herniserver_name {
    font-size: 22px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    color: #002B42;
    width: 250px;
}
.ordered_item_info_title .herniserver_slots {
    font-size: 22px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    color: #002B42;
}
.herniserver_ico {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 22px;
    color: #002B42;
}

.ordered_item_info_desc {
    display: flex;
    font-family: Oswald;
    font-size: 16px;
    color: #002B42;
    margin-top: 10px;
    border-radius: 5px 0 0 5px;

}

.coziskate {
    width: 130px;
}
.items_coziskate {
    width: calc(100% - 80px);
    padding-left: 10px;
    background-color:  rgb(248, 248, 248);
}

.items_coziskate2 {
    width: calc(100% - 20px);
    padding-left: 0px;
    margin-top: 0px;
}


.btn_continue_order {
    width: 300px;
    height: 40px;
    border: 1px solid #659e03;
    background: linear-gradient(to bottom, #96CE36, #689F38);
    position: absolute;
    bottom: 7px;
    right: 20px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Oswald;
    color: #002B42;
    font-size: 20px;
    transition: all 0.3s;
}
.btn_continue_order:hover {
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.75);
}

.btn_continue_order2 {
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
    height: 40px;
    border: 1px solid #659e03;
    background: linear-gradient(to bottom, #96CE36, #689F38);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Oswald;
    color: #002B42;
    font-size: 20px;
    transition: all 0.3s;
}
.btn_continue_order2:hover {
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.75);
}

.btn_cancel_order {
    width: auto;
    height: 40px;
    position: absolute;
    bottom: 7px;
    left: 180px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Oswald;
    color: darkred;
    font-size: 16px;
    transition: all 0.3s;
}
.btn_cancel_order:hover {
    color: red;
}
.alert {
    position: absolute;
    left: 480px;
    top: 30px;
    color: #96CE36;
    font-family: Oswald;
}

#order2 {
    display: none;
}
#order3 {
    display: none;
}   
#order4 {
    display: none;
}

.order2_content {
    width: 90%;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
    font-family: Oswald;
    font-size: 16px;
    border-radius: 5px;
    margin: auto;
    margin-top: 10px;   
}

.fakturacni_udaje_card {
    width: 300px;
    height: auto;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
    background-color: #ececec;
    margin-top: 10px;
    transition: all 0.3s;
    cursor: default;
    border: 1px solid #ccc;
    position: relative;
}
.faktura_fullname_card {
    font-size: 20px;
}
.faktura_text_card {
    font-size: 16px;
    color: #002b42c0;
}
.faktura_street_card {
    font-size: 16px;
    color: #002b42c0;
    
}
.zmenit_card_btn {
    width: 100px;
    height: 30px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Oswald;
    color: #002B42;
    font-size: 16px;
    transition: all 0.3s;
}
.zmenit_card_btn:hover {
    color: green;
}

.faktura_input {
    width: calc(100% - 40px);
    height: 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    outline: none;
    font-family: Oswald;
    font-size: 16px;
    margin-top: 10px;
}
.doprava_card {
    width: 95%;
    height: auto;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
    background-color: #ececec;
    margin-top: 10px;
    transition: all 0.3s;
    color: #002B42;
    cursor: default;
    border: 1px solid #ccc;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#backtooriginal {
    position: absolute;
    right: 45px;
    bottom: 0px;
    cursor: pointer;
    color: #002B42;
    font-family: Oswald;
}
#backtooriginal:hover {
    color: purple;
}
#backtooriginal2 {
    position: absolute;
    right: 45px;
    bottom: 5px;
    cursor: pointer;
    color: #002B42;
    font-family: Oswald;
}
#backtooriginal2:hover {
    color: purple;
}

.platba_card {
    width: 95%;
    height: auto;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
    background-color: #ececec;
    margin-top: 10px;
    transition: all 0.3s;
    cursor: default;
    border: 1px solid #ccc;
    position: relative;
    display: flex;
    align-items: center;
    

}

.platba_icons {
    width: 70%;
    display: flex;
    align-items: center;
    margin-left: 10px;
    justify-content: space-between;

}

.platba_icons img {
    height: 20px;
}

.for_btn_order2 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.btn_cancel_order2 {
    width: auto;
    height: 30px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Oswald;
    color: darkred;
    font-size: 16px;
    transition: all 0.3s;
}
.btn_cancel_order2:hover {
    color: red;
}

.fakturacni_udaje_card_is_company {
    width: 360px;
    height: auto;
    padding: 5px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
    background-color: #ececec;
    margin-top: 10px;
    transition: all 0.3s;
    cursor: default;
    border: 1px solid #ccc;
    position: relative;
}

.oncorp {
    width: 360px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    background-color: #96ce3675;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
    color: #002B42;
}


.order3_content {
    width: 90%;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
    font-family: Oswald;
    font-size: 16px;
    border-radius: 5px;
    margin: auto;
    margin-top: 10px;   
}
.shrnuti_order {
    width: 100%;
    height: auto;
    font-family: Oswald;
    font-size: 16px;
    color: #002B42;
    border: 1px solid #ccc;
    background-color: #F1F1F1;
    border-radius: 5px;
    padding: 15px;
    cursor: default;
}
.shrnuti_polozka_title {
    display: flex;
    justify-content: space-between;
    background-color: #f8f9fa;
    padding: 5px;
    border-bottom: 2px solid #dee2e6;
    font-weight: normal;
    font-size: 12px;
}

.shrnuti_polozka_title_item {
    flex: 1;
    text-align: center;
    color: #343a40;
}

.shrnuti_polozka_content {
    background-color: #ffffff;
    padding: 0px;
    border-top: none;
}

.shrnuti_polozka_content_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    border-bottom: 1px solid #dee2e6;
    font-size: 1em;
    color: #495057;
}

.shrnuti_polozka_content_item {
    flex: 1;
    text-align: center;
}

.shrnuti_polozka_content_row:last-child {
    border-bottom: none;
}

.shrnuti_doprava_platba {
    width: 100%;
    height: auto;
    font-family: Oswald;
    font-size: 16px;
    color: #002B42;
    border: 1px solid #ccc;
    background-color: #F1F1F1;
    border-radius: 5px;
    padding: 15px;
    cursor: default;
    margin-top: 30px;
}
.shrnuti_doprava_platba_title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.shrnuti_doprava_platba_title_item {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.shrnuti_doprava_platba_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
}

.shrnuti_doprava_platba_content_item {
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.shrnuti_doprava_platba_content_item_title {
    font-size: 16px;
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
}

.shrnuti_doprava_platba_content_item_desc {
    font-size: 14px;
    color: #777;
}
.shrnuti_doprava_platba_content_item i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #d3d3d3;
    color: #96ce3660;
}

#shrnuti_fakturacni_udaje {
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
}
#shrnuti_fakturacni_udaje_corp {
    display: none;
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
    max-height: 80px;
}
.for_btn_order3 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.btn_cancel_order3 {
    width: auto;
    height: 30px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Oswald;
    color: darkred;
    font-size: 16px;
    transition: all 0.3s;
}
.btn_cancel_order3:hover {
    color: red;
}
.btn_continue_order3 {
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
    height: 40px;
    border: 1px solid #659e03;
    background: linear-gradient(to bottom, #96CE36, #689F38);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Oswald;
    color: #002B42;
    font-size: 20px;
    transition: all 0.3s;
}
.btn_continue_order3:hover {
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.75);
}
.input-error {
    border: 1px solid red;
}

.order_souhlasy {
    width: 100%;
    height: auto;
    margin-top: 30px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.promo_code {
    width: 400px;
    height: auto;
    text-align: left;
    margin-top: -10px;
}

#promo_code_input {
    width: 200px;
    height: 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    outline: none;
    font-family: Oswald;
    font-size: 16px;
    margin-left: 10px;
}
.submit_promo {
    margin-left: 10px;
    cursor: pointer;
}
.submit_promo:hover {
    color: green;
}
.promo_error {
    color: red;
    font-family: Oswald;
    font-size: 14px;
    margin-left: 20px;
    display: none;
}
.promo_ok {
    color: green;
    font-family: Oswald;
    font-size: 14px;
    margin-right: 20px;
    text-align: right;
    margin-top: 10px;
    display: none;
}

.order_souhlasy_container {
    width: 310px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 10px;
    padding: 10px;
    padding-bottom: 2px;
    border-radius: 5px;
    background-color: #f9f9f9;
    margin-left: auto;
    background-color: #f9f9f9;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Align the container to the right */
}

.order_souhlasy_item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.order_souhlasy_item input[type="checkbox"] {
    margin-right: 10px;
    width: 15px;
    height: 15px;
}

.order_souhlasy_item label {
    font-size: 14px;
    color: #333;
}

.order_vop:hover {
    color: #96CE36;
}



.order4_content {
    width: 90%;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
    font-family: Oswald;
    font-size: 16px;
    border-radius: 5px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.loader {
    border: 12px solid #f3f3f3; /* Light grey */
    border-top: 12px solid #96CE36; /* Blue */
    border-radius: 50%;
    width: 70px;
    height: 70px;
    text-align: center;
    animation: spin 2s linear infinite;
    margin: auto; /* Center the loader */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.order4_content p {
    text-align: center;
    width: 70%;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    color: #002B42;
}
.order4_content h2 {
    text-align: center;
    width: 70%;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 20px;
    font-family: Oswald;
    color: #96CE36;
}

.order_mc_form {
    width: 70%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    padding-left: 0;
    padding-right: 0;
    
}

.order_mc_form_inputs {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order_mc_form_inputs select {
    width: 40%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    outline: none;
    font-family: Oswald;
    font-size: 16px;
}
.mc_conf_tit {
    width: 70%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: left;
}
.mc_conf_tit h2 {
    text-align: left;
    margin: 0;
    width: 100%;
    font-weight: normal;
}

.mc_conf_tit p {
    text-align: left;
    margin: 0;
    width: 100%;
    font-weight: normal;
    padding: 0;
}

.btn_finish_mc {
    width: 70%;
    margin: auto;
    height: 40px;
    border: 1px solid #659e03;
    background: linear-gradient(to bottom, #96CE36, #689F38);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Oswald;
    color: #002B42;
    font-size: 20px;
    transition: all 0.3s;
    margin-bottom: 40px;
}
.btn_finish_mc:hover {
    color: whitesmoke;
}

.wave-animation {
    width: 50px;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    height: 50px;
    border-radius: 50%;
    background: rgba(73, 218, 29, 0.5);
    animation: wave 1.5s infinite;
}

@keyframes wave {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes rotate {
    0% {
        font-size: 100px;
        transform: rotate(0deg);
    }
    100% {
        font-size: 70px;
        transform: rotate(360deg);
    }
}

.checkmark {
    width: 70%;
    height: auto;
    margin: auto;
    margin-top: 0px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.rot {
    font-size: 70px;
    color: #96CE36;
}
.ok_install {
    width: 70%;
    margin: auto;
    text-align: center;
    color: green;
    margin-bottom: 20px;
    font-size: 20px;
}
.ok_install a {
    color: #96CE36;
    text-decoration: none;
    transition: all 0.3s;
}

.fakturace_tit {
    width: calc(100% - 50px);
    padding-left: 50px;
    height: 50px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: left;
    color: #002B42;
    font-size: 24px;
    cursor: default;
    font-family: Oswald;
    border-bottom: 1px solid rgb(224, 224, 224);
}

.fakturace_sauce {
    width: calc(100% - 30px);
    padding-left: 20px;
    padding-right: 10px;
    height: auto;
    margin-top: 10px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: left;
    color: #002b428f;
    font-size: 16px;
    font-weight: normal !important;
    cursor: default;
    font-family: Oswald;
    border-bottom: 1px solid rgb(224, 224, 224);
}

/*
.tabs {
    font-family: orbitron;
    overflow: hidden;
    margin-top: 20px;
}

.tablink {
    position: relative;
    background-color: #f5f5f5;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 8px 10px;
    transition: 0.3s;
    font-size: 16px;
    color: #8f8f8f;
    border: 1px solid #ebebeb;
    border-radius: 10px 10px 0 0;
    z-index: 0;
    font-family: Abel;
    font-weight: bold;
}

.tablink:hover {
    background-color: #f0f0f0;
    color: black;
    border: 1px solid #ccc;
}

.tablink.active {
    position: relative;
    z-index: 2;
    border: 1px solid #82b826;
    border-radius: 10px 10px 0 0;
    background-color: #96ce36bd;
    color: black;
    border-bottom: 1px solid #B1DB6A;
}

.tabcontent {
    display: none;
    border-top: none;
    width: 100%;
}

.tabcontent table {
    position: relative;
    z-index: 1;
    margin-top: -1px;
    width: 100%;
    border: 1px solid #82b826;
    border-spacing: 0;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

.tabcontent table tr {
    border-bottom: 2px solid red !important;
}

.tabcontent th {
    font-weight: normal;
    padding: 3px;
}

.tabcontent_title {
    width: 100%;
    background-color: #96ce36bd;
    font-family: Oswald;    
}
.tabcontent_row {
    width: 100%;
    text-align: center;
}
.tabcontent_row th {
    border-left: 1px solid #82b826;
    font-family: Oswald;
    border-bottom: 0;
}
.tabcontent_row th:first-child {
    border-left: none;
}
.tabcontent_row td {
    border-left: 1px solid #82b826;
    border-top: 1px solid #82b826;
    font-family: Oswald;
    border-bottom: 0;
}
.tabcontent_row td:first-child {
    border-left: none;
}

.tabcontent_row:hover {
    background-color: #f0f0f0;
}


*/


/* Tab Styles */
.tabs {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 20px;
    font-family: Oswald;
}

.tabcontent {
    font-family: Oswald;
}

.tablink {
    background-color: transparent;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tablink:hover {
    color: #96CE36;
}

.tablink.active {
    color: #96CE36;
    border-bottom: 3px solid #96CE36;
}

/* Table Styles */
#tableContainer {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.tabcontent_title th {
    background-color: #f8f9fa;
    color: #495057;
    font-weight: bold;
    padding: 12px 15px;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
}

.tabcontent_row td {
    padding: 12px 15px;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    font-family: Oswald;
    font-weight: normal !important;
}

.tabcontent_row {
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.tabcontent_row:hover {
    color: #002B42;
    cursor: default;
    background-color: #f5f5f5 !important;
}

.tabcontent_row td:first-child {
    border-left: 1px solid #dee2e6;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.tabcontent_row td:last-child {
    border-right: 1px solid #dee2e6;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* Status Colors */
.tabcontent_row td:last-child {
    font-weight: bold;
}

.tabcontent_row td[style*="color: green"] {
    color: #28a745 !important;
}

.tabcontent_row td[style*="color: darkred"] {
    color: #dc3545 !important;
}

.tabcontent_row td[style*="color: orange"] {
    color: #ffc107 !important;
}

/* Pagination Styles */
.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 20px;
}

#loadMoreOrdersBtn {
    background: linear-gradient(to bottom, #96CE36, #689F38);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    font-family: Oswald;
    transition: all 0.2s ease;
}

#loadMoreOrdersBtn:hover {
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.5);
}

#loadMoreInvoicesBtn {
    background: linear-gradient(to bottom, #96CE36, #689F38);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    font-family: Oswald;
    transition: all 0.2s ease;
}

#loadMoreInvoicesBtn:hover {
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 10px;
    }

    .tablink {
        padding: 8px 12px;
        font-size: 14px;
    }

    .tabcontent_title th,
    .tabcontent_row td {
        padding: 8px 10px;
        font-size: 14px;
    }
}

@keyframes rotates {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotates {
    animation: rotates 1s linear infinite;
}


.nedokoncene_instalace {
    width: 100%;
    height: auto;
    margin-top: 30px;
    text-align: left;
    font-family: Oswald;
    font-size: 16px;
    color: #002B42;
    padding-bottom: 20px;
    border-bottom: 2px dashed #96CE36;
}
.ni_title {
    display: inline-block;
    padding-left: 50px;
    padding-right: 20px;
    border-bottom: 2px solid #96CE36;
}

.nedokoncene_instalace_item {
    width: calc(95% - 40px);
    height: auto;
    margin: auto;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
    background-color: #ececec;
    margin-top: 10px;
    transition: all 0.3s;
    cursor: default;
    border: 1px solid #ccc;
    position: relative;
    display: flex;
    align-items: center;
    color: #4E6A7A;
    justify-content: space-between;
}
.nedokoncene_instalace_item:hover {
    background-color: #e4e4e4;
    
}

.installation-id {
    font-size: 1.1em;
    color: #002B42;
    display: flex;
    align-items: center;
    margin-right: 20px;
    
}

.idate {
    min-width: 60px;
    padding: 5px 20px;
    border-radius: 5px;
    background-color: #f7f7f7;
    border: 1px solid #e4e4e4;
}

.installation-config {
    font-size: 1.05em;
    color: #002B42;
    display: flex;
    align-items: center;
}

.install-button {
    display: inline-block;
    padding: 5px 10px;
    font-size: 1em;
    color: #fff;
    background: linear-gradient(to bottom, #96CE36, #689F38);
    border: none;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.install-button:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.ni_select {
    padding: 5px 5px;
    font-size: 1em;
    border-radius: 10px;
    border: 1px solid #ccc;
    outline: none;
    max-width: 130px;
}
.ni_select2 {
    padding: 5px 5px;
    font-size: 1em;
    border-radius: 10px;
    border: 1px solid #ccc;
    outline: none;
    max-width: 130px;
}


.billing_modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.billing_modal_content {
    width: 500px;
    height: auto;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.billing_modal_close {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #002B42;
    transition: all 0.3s;
}
.billing_modal_close:hover {
    transform: rotate(90deg);
    color: #96CE36;
}
.billing_modal_title {
    font-size: 1.2em;
    color: #002B42;
    font-family: Oswald;
    margin-top: 5px;
    border-bottom: 1px solid #ccc;
}

.bmcc {
    width: 95%;
    height: auto;
    margin-top: 0px; 
}

.billing-options-title {
    font-size: 0.9em;
    color: #96CE36;
    font-family: Oswald;
    margin-top: 10px;
}

.billing-options {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-top: 10px;
    font-family: Oswald;
    border-bottom: 2px solid #ccc;
    color: #002B42;
    box-shadow: 0 0px 4px rgba(0, 0, 0, 0.1);
}

.billing-options input[type="radio"] {
    display: none;
}

.billing-options label {
    padding: 10px 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.billing-options input[type="radio"]:checked + label {
    background-color: #92C935;
    border-color: #83b62b;
    color: white;
}

.billing-options label:hover {
    background-color: #e0e0e0;
}

.bmcc_cena {
    width: calc(100% - 20px);
    padding-right: 20px;
    height: auto;
    text-align: left;
    margin-top: 10px;
    font-family: Oswald;
    position: relative;
    color: #002B42;
    margin-left: 10px;
}

.bmcc_btn {
    width: 275px;
    height: 30px;
    border: 1px solid #659e03;
    background: linear-gradient(to bottom, #96CE36, #689F38);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Oswald;
    color: whitesmoke;
    font-size: 20px;
    transition: all 0.3s;
    margin-top: 60px;
    position: absolute;
    right: 10px;
    bottom: 0;
}
.bmcc_btn:hover {
    color: #002B42;
}
.bmcc_agree {
    width: 275px;
    height: 40px;
    font-size: 14px;
    color: #002B42;
    font-family: Oswald;
    position: absolute;
    right: 15px;
    bottom: 35px;
}
.bmcc_cena_bez_dph {
    padding-top: 10px;
}
.bmcc_cena_s_dph {
    padding-bottom: 10px;
}
.csdph {
    font-size: 1.2em;
    color: #96CE36;
    border-bottom: 4px double #96CE36;
}

.extend_platba {
    font-family: Oswald;
    font-size: 16px;
}

.extend_platba a {
    color: #96CE36;
    text-decoration: underline;
    transition: all 0.3s;
}

.bmcc_error {
    width: 100%;
    height: auto;
    margin-top: 10px;
    text-align: center;
    font-family: Oswald;
    font-size: 16px;
    padding: 5px 0;
    color: whitesmoke;
    display: none;
    font-weight: normal;
    background-color: rgb(155, 52, 52);
}

#gw_href {
    color: #96CE36;
    text-decoration: underline;
    transition: all 0.3s;
}

#java_version {
    width: calc(100% - 150px);
    height: 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    outline: none;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3) inset;
}

.zmenit_verzi_btn {
    position: absolute;
    right: 10px;
    bottom: 35px;
    width: 100px;
    height: 30px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Oswald;
    color: #002B42;
    font-size: 16px;
    transition: all 0.3s;
    background-color: #96ce36b4;;
}
.zmenit_verzi_btn:hover {
    background-color: #96CE36;
    font-size: 15px;
}

#gpinfo {
    display: none;
}


.cookies {
    width: 100%;
    height: 100px;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #96CE36;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-family: Oswald;
    font-size: 16px;
    z-index: 999;
    box-shadow: 0px -5px 5px 0px rgba(0,0,0,0.25);
    border-top: 1px solid #0F4460;
}

.cookies_img {
    margin-left: -115px;
}

.cookies_text {
    margin-left: -50px;
}
.cookies_title {
    font-size: 20px;
    font-weight: bold;
    margin-right: 10px;
    color: #002B42;
    border-bottom: 1px solid #002B42;;
}
.cookies_desc {
    font-size: 16px;
    font-weight: 300;
    margin-top: 5px;
    color: #002B42;
}

.cookies_btns {
    width: 300px;
    display: flex;
    align-items: center;
    margin-left: 600px;
    margin-top: 10px;
}
#cookies_accept {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Oswald;
    color: white;
    font-size: 16px;
    transition: all 0.3s;
    padding: 5px 10px;
    background-color: #002B42;
}
#cookies_accept:hover {
    color: #002B42;
    background-color: white;
}
#cookies_decline {
    cursor: pointer;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Oswald;
    color: white;
    font-size: 16px;
    transition: all 0.3s;
    padding: 5px 10px;
    background-color: rgb(196, 28, 28);
}
#cookies_decline:hover {
    background-color: white;
    color: rgb(196, 28, 28);
}

.games img {
    width: 170px;
    border: 2px solid #96CE36;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s;
    filter: grayscale(70%);
    /*inset shadow*/
    box-shadow: 0 5px 5px rgba(0, 0, 0, 1);
}
.games img:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.08);
}

.games2 img {
    width: 170px;
    border: 2px solid #96CE36;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s;
    filter: grayscale(70%);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 1);
}
.games2 img:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.08);
}
.games2 {
    /*width: 80%;
    margin-left: 10%;*/
    margin-top: 20px;
    margin-bottom: 10px;
}

.games .img_active {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.08);    
}
.games2 .img_active {
    opacity: 1;
    filter: grayscale(0);   
    transform: scale(1.08); 
}

#specify {
    border: none;
}

#ram {
    width: 85%;
    margin-left: -100px;
}

#mc_infoo {
    position: absolute;
    bottom: -25px;
    right: -90px;
    width: 500px;
    font-family: Oswald;
    color: darkred;
    display: none;
}

.server_admin_content::-webkit-scrollbar-track {
    background: #535353;
}

.server_admin_content::-webkit-scrollbar-thumb {
    background: linear-gradient(to left, #96CE36, #689F38);
    border-radius: 10px;
}

.server_admin_content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to right, #96CE36, #689F38);
}

.server_admin_content::-webkit-scrollbar {
    width: 10px;
}

.blink-1{-webkit-animation:blink-1 3.5s ease-in-out infinite both;animation:blink-1 3.5s ease-in-out infinite both}
@-webkit-keyframes blink-1{0%,50%,100%{opacity:1}25%,75%{opacity:0}}@keyframes blink-1{0%,50%,100%{opacity:1}25%,75%{opacity:0}}

.blink-2{-webkit-animation:blink-2 3.5s ease-in-out infinite both;animation:blink-2 3.5s ease-in-out both}
@-webkit-keyframes blink-2{0%,50%,100%{opacity:1}25%,75%{opacity:0}}@keyframes blink-1{0%,50%,100%{opacity:1}25%,75%{opacity:0}}

.shake-horizontal{-webkit-animation:shake-horizontal .8s cubic-bezier(.455,.03,.515,.955) both;animation:shake-horizontal .8s cubic-bezier(.455,.03,.515,.955) both}
@-webkit-keyframes shake-horizontal{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%{-webkit-transform:translateX(10px);transform:translateX(10px)}80%{-webkit-transform:translateX(8px);transform:translateX(8px)}90%{-webkit-transform:translateX(-8px);transform:translateX(-8px)}}@keyframes shake-horizontal{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%{-webkit-transform:translateX(10px);transform:translateX(10px)}80%{-webkit-transform:translateX(8px);transform:translateX(8px)}90%{-webkit-transform:translateX(-8px);transform:translateX(-8px)}}