* {
    margin: 0;
    padding: 0;
}

body{
    overflow-x: hidden;
    background-color: #121212;
}

html {
    scroll-behavior: smooth;
}

:root{
    color-scheme: dark;
}

::selection {
    background: rgba(53, 53, 53, 0.6);
}

::-moz-selection {
    background: rgba(53, 53, 53, 0.6);
}

#hiba {
    display: none !important;
    opacity: 0 !important;
}

@media screen and (max-width: 800px) {
    #hiba {
        display: block !important;
        opacity: 1 !important;
    }
    .login {
        display: none !important;
        opacity: 0 !important;
    }
}

.login-body {
    height: 100vh;
    width: 100%;
    background-color: #000;
    background-image: url("IMG/bodybg.svg");
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login {
    padding: 60px 40px;
    background-color: #00000031;
    backdrop-filter: blur(3px);
}

.login h1 {
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    font-size: 50px;
    text-shadow: #00000096 3px 3px 3px;
    cursor: default;
}

.login p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 23px;
    text-align: center;
}

.login b {
    color: #a08028;
    text-decoration: none;
    font-weight: 600;
}

.login a {
    position: relative;
    display: block;
    width: 180px;
    height: 60px;
    background-image: url('./IMG/steambtn.webp');
    background-size: contain;
    background-repeat: no-repeat;
    margin: 30px auto 30px auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 70px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    background-color: #00000031;
    backdrop-filter: blur(3px);
    z-index: 100;
    gap: 40px;
}

.header a {
    transition: all 0.3s linear;
    text-decoration: none;
    color: #fff;
    font-size: 27px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: #00000096 2px 2px 2px;
}

.header a:hover {
    transform: scale(1.05);
}

.header a:nth-child(1) {
    position: absolute;
    left: 20px;
    top: 0;
}

.header a:nth-child(1) img {
    height: 70px;
}

.fiok {
    position: absolute;
    right: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    height: 70px;
    cursor: pointer;
    gap: 10px;
    padding: 0 20px 0 0;
}

.fiok img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.fiok p {
    text-decoration: none;
    color: #fff;
    font-size: 25px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: #00000096 2px 2px 2px;
}

.main-body {
    padding-top: 70px;
}

.iframe-tarto {
    margin: 10px auto 0 auto;
    position: relative;
    width: 450px;
    height: 260px;
    max-width: 100%;
    cursor: default;
    background: transparent;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 6px solid #00000052;
    border-top: 6px solid #a08028;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    z-index: 2;
    background: transparent;
}

.dataholder2 {
    z-index: 1;
    width: 450px;
    height: 260px;
    max-width: 100%;
    animation: load 1s ease-out;
    cursor: default;
    padding: 0 0 0 20px;
    display: none;
    background: transparent;
}

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

.dataholder {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: center;
    text-shadow: #00000096 2px 2px 2px;
    cursor: default;
}

.dataholderpic{
    height: 50px;
    width: 50px;
    margin-right: 15px;
}

.player{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.playerpic{
    background-image: url('IMG/people.webp');
    background-repeat: no-repeat;
    background-size: cover;
}

.player p{
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    padding: 5px 0 0 5px;
    cursor: default;
}

.ip{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 10px;
}

.serverpic{
    background-image: url('IMG/server.webp');
    background-repeat: no-repeat;
    background-size: cover;
}

.ip p{
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    padding: 5px 0 0 5px;
    cursor: default;
}

.map{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 10px;
}

.mappic{
    background-image: url('IMG/map.webp');
    background-repeat: no-repeat;
    background-size: cover;
}

.map p{
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    padding: 5px 0 0 5px;
    cursor: default;
}

.main-body h1 {
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    font-size: 55px;
    text-shadow: #00000096 3px 3px 3px;
    margin: 15px auto;
    cursor: default;
}

.stat-table {
    animation: load 1s ease-out;
    margin: auto;
    width: 100%;
    text-decoration: none;
    color: #fff;
    font-size: 23px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-table table td:nth-child(1), .stat-table table td:nth-child(2) {
    width: 130px;
    text-align: center;
}

.stat-table table td:nth-child(3), .stat-table table td:nth-child(4), .stat-table table td:nth-child(5) {
    width: 100px;
    text-align: center;
}

.stat-table td {
    width: fit-content;
    padding: 0 2px;
    cursor: default;
}

.rang-table {
    margin: auto;
    max-width: 90%;
    width: 700px;
    text-decoration: none;
    color: #fff;
    font-size: 23px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-left: 60px;
    cursor: default;
    border-collapse: collapse;
}

.rang-table th {
    text-align: center;
    color: #fff;
    border-bottom: 2px solid #fff;
    padding: 5px 2px;
}

.rang-table img, .stat-table img {
    height: 30px;
    transform: translateY(6px);
}

.rang-table td:nth-child(1) {
    width: 100px;
}

.rang-table td:nth-child(3) {
    width: 200px;
}

.rang-table td:nth-child(1), .rang-table td:nth-child(3) {
    text-align: center;
}

.rang-table td:nth-child(2), .rang-table td:nth-child(3) {
    border-left: 2px solid #fff;
}

.rang-table td {
    width: fit-content;
    padding: 5px 5px 5px 10px;
    font-size: 23px;
}

.rang-table tr:nth-child(1) {
    color: #b6922e;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.rang-table tr:nth-child(2) {
    color: #888888;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.rang-table tr:nth-child(3) {
    color: #695419;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.rang-form {
    width: fit-content;
    margin: 0 auto 20px auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.rang-form select {
    transition: all 0.3s linear;
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 40px;
    width: 170px;
    border: 1px solid #fff;
    outline: none;
    cursor: pointer;
    border-radius: 2px;
}

.rang-form select:nth-child(2) {
    height: 40px;
    width: 100px;
}

.rang-form input {
    background-color: #00000000;
    transition: all 0.3s linear;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    height: 40px;
    width: 100px;
    border: 1px solid #fff;
    outline: none;
}

.rang-form input:hover {
    background-color: #a08028;
}

.pp {
    position: absolute;
    top: 80px;
    right: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 3px;
    cursor: default;
}

.pp img {
    height: 32px;
    width: 32px;
}

.pp p {
    text-decoration: none;
    color: #fff;
    font-size: 25px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-bottom: 4px;
    font-weight: 600;
}

.webshop-kat {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: fit-content;
    text-decoration: none;
    color: #fff;
    font-size: 19px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    gap: 40px;
    margin-top: 10px;
}

.webshop-kat h2 {
    font-weight: 400;
    transition: all 0.3s linear;
    cursor: pointer;
}

.webshop-kat h2:hover {
    transform: scale(1.03);
}

.most {
    transition: all 0.3s linear !important;
    color: #a08028 !important;
}

.napi-body {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    height: fit-content;
}

.napi-body img {
    transition: all 0.3s linear;
    width: 300px;
    height: 300px;
    cursor: pointer;
    z-index: 0;
}

.napi-body img:hover {
    transition: all 0.3s linear;
    animation: raz 3s ease-in-out infinite;
}

@keyframes raz {
    0% {
        transform: none;
    }
    25% {
        transform: rotate(4deg) scale(1.02) translateY(-20px);
    }
    50% {
        transform: none;
    }
    75% {
        transform: rotate(-2deg) scale(1.03) translateY(-15px);  
    }
    100% {
        transform: none;
    }
}

.napi-body p {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 35px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    z-index: 100;
    transform: translateY(115px);
    cursor: default;
}

.napi-body h3 {
    margin: 30px 0 15px 0;
    text-decoration: none;
    color: #fff;
    font-size: 25px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: default;
    z-index: 100;
}

.rang-body {
    width: 100%;
    height: fit-content;
}

.rang-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 20px 0;
    gap: 50px;
}

.rang-holder div {
    transition: all 0.3s linear;
    width: 175px;
    height: 317px;
    padding: 5px 10px;
    cursor: default;
    border: 1px solid #fff;
}

.rang-holder div:hover {
    transform: scale(1.01);
}

.rang-holder h2 {
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    font-style: normal;
    font-family: 'Courier New', Courier, monospace;
    text-shadow: #00000096 2px 2px 2px;
    cursor: default;
}

.rang-holder .vipar {
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    font-style: normal;
    font-family: 'Courier New', Courier, monospace;
    text-shadow: #00000096 2px 2px 2px;
    margin-bottom: 5px;
}

.rang-holder b {
    color: #a08028;
    font-weight: 600;
}

.rang-holder p {
    text-align: left;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    line-height: 21px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.btn-holder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-top: 5px;
}

.rang-body button {
    transition: all 0.3s linear;
    background-color: #00000000;
    text-decoration: none;
    color: #fff;
    font-size: 23px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    height: 45px;
    width: 110px;
    border: 1px solid #fff;
    outline: none;
}

.rang-body button:hover {
    background-color: #a08028;
}

.egyeb-body {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.item-holder p {
    text-align: center;
    width: 100%;
    margin-top: 5px;
}

.item-holder {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 10px;
    padding: 20px;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.item-holder div {
    position: relative;
    padding: 15px 10px;
    width: 280px;
    height: 170px;
    border: 1px solid #fff;
    cursor: default;
}

.item-holder input[type="text"] {
    display: none;
    opacity: 0;
}

.item-holder div h3 {
    text-decoration: none;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    font-style: normal;
    font-family: 'Courier New', Courier, monospace;
    text-shadow: #00000096 2px 2px 2px;
    text-align: center;
}

.item-holder input[type="submit"] {
    background-color: #00000000;
    transition: all 0.3s linear;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    height: 40px;
    width: 100px;
    border: 1px solid #fff;
    outline: none;
    position: absolute;
    bottom: 15px;
    right: 15px;
    border-radius: 2px;
}

.item-holder input[type="submit"]:hover {
    background-color: #a08028;
}

.item-holder .ar {
    width: fit-content;
    position: absolute;
    bottom: 18px;
    left: 15px;
    color: #a08028;
    font-size: 25px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.item-holder .akcio {
    z-index: 100;
    position: absolute;
    top: -25px;
    right: -12px;
    font-size: 14px;
    width: 41px;
    height: 41px;
    background: radial-gradient(circle, rgb(175, 164, 0) 0%, rgba(160, 128, 40, 1) 70%); 
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0px;
    animation: akcio 2s ease-in-out infinite;
    font-family: Arial, Helvetica, sans-serif;
    text-shadow: #00000096 2px 2px 2px;
}

.item-holder .epic {
    background: radial-gradient(circle, rgb(192, 109, 0) 0%, rgba(160, 128, 40, 1) 80%); 
}

@keyframes akcio {
    0% {
        transform: scale(1) rotate(20deg);
    }
    50% {
        transform: scale(1.05) rotate(20deg);
    }
    100% {
        transform: scale(1) rotate(20deg);
    }
}

.talalat-holder {
    animation: load 1s ease-out;
    position: absolute;
    top: 120px;
    right: 100px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1500px) {
    .talalat-holder {
        right: 50px;
    }
}

@media screen and (max-width: 1200px) {
    .talalat-holder {
        position: relative;
        margin: 25px auto;
        top: 0;
        right: 0;
    }
}

.talalat-img {
    position: relative;
    width: 280px;
    height: auto;
    aspect-ratio: 129 / 200;
    background-image: url(./IMG/jatekos.webp);
    background-position: center center;
    background-size: 100% 100%;
}

.talalat-img div {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    line-height: 17px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: default;
    text-align: center;
    white-space: nowrap;
    border: 1px solid rgba(255, 0, 0, 0);
    transition: all 0.2s linear;
    border-radius: 2px;
}

.talalat-img div:hover {
    backdrop-filter: grayscale(0.9);
    font-size: 17px;
    line-height: 19px;
}

.szam {
    transition: all 0.2s linear;
    font-size: 20px;
    line-height: 22px;
}

.talalat-img div:hover .szam {
    font-size: 22px;
    line-height: 24px;
}

.fej {
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 70px;
}

.mellkas {
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    width: 95px;
    height: 65px;
}

.has {
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 75px;
}

.balkez {
    top: 75px;
    left: 35px;
    transform: rotate(30deg);
    width: 38px;
    height: 180px;
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
}

.balkez p {
    transform: rotate(-30deg);
}

.jobbkez {
    top: 75px;
    right: 35px;
    transform: rotate(-30deg);
    width: 38px;
    height: 180px;
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
}

.jobbkez p {
    transform: rotate(30deg);
}

.ballab {
    top: 215px;
    left: 86px;
    width: 50px;
    height: 210px;
}

.ballab p {
    transform: translateX(-15px);
}

.jobblab {
    top: 215px;
    right: 86px;
    width: 50px;
    height: 210px;
}

.jobblab p {
    transform: translateX(15px);
}

.talalat-holder h3 {
    text-decoration: none;
    color: #fff;
    font-size: 25px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: default;
    text-align: center;
    margin-bottom: 15px;
}

.abra-holder {
    animation: load 1s ease-out;
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
    gap: 40px;
}

.abra-holder div h3 {
    text-decoration: none;
    color: #fff;
    font-size: 25px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: default;
    text-align: center;
    margin-bottom: 15px;
}

.abra-holder canvas {
    width: 250px;
    height: 250px;
}

@keyframes load{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.figyelem {
    text-align: center;
    width: 100%;
    margin-top: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.figyelem b {
    color: #a08028;
}

.skin-holder {
    width: 95%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: auto;
    padding-bottom: 120px;
}

.skin-holder #forma {
    display: none;
    opacity: 0;
}

.skin-holder input[type="submit"] {
    background-color: #00000000;
    transition: all 0.3s linear;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    height: 40px;
    width: 100px;
    border: 1px solid #fff;
    outline: none;
    position: absolute;
    bottom: 15px;
    right: 15px;
    border-radius: 2px;
}

.skin-holder input[type="submit"]:hover {
    background-color: #a08028;
}

.skin-holder .ar {
    width: fit-content;
    position: absolute;
    bottom: 18px;
    left: 10px;
    color: #a08028;
    font-size: 25px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.skin-holder h3 {
    text-decoration: none;
    color: #fff;
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    font-style: normal;
    font-family: 'Courier New', Courier, monospace;
    text-shadow: #00000096 2px 2px 2px;
    text-align: center;
    cursor: default;
    transform: translateY(7px);
}

.skin-holder .elem {
    position: relative;
    width: 300px;
    height: 200px;
    border: 1px solid #fff;
    flex-shrink: 0;
}

.skin-holder img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-height: 115px;
    margin: 0 auto;
    cursor: default;
}

.skin-kereso {
    width: fit-content;
    height: fit-content;
    margin: 20px auto;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.skin-kereso h2 {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    cursor: default;
}

.skin-kereso select {
    width: 210px;
    height: 42px;
    margin-top: 5px;
    font-size: 18px;
    cursor: pointer;
    padding: 0 3px;
    border-radius: 2px;
}

.skin-kereso option {
    cursor: pointer;
}

.gyik {
    width: 100%;
    height: fit-content;
    padding-bottom: 120px;
}

.gyik h2 {
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    font-size: 45px;
    text-shadow: #00000096 3px 3px 3px;
    margin-top: 10px;
    cursor: default;
}

.gyik .gyikholder {
    width: 70%;
    height: fit-content;
    margin: auto;
}

.gyik a {
    color: #a08028;
    text-decoration: none;
    font-weight: 600;
}

details {
    background-color: #00000031;
    backdrop-filter: blur(3px);
    color: #fff;
    margin-top: 15px;
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

summary {
    padding: 10px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-size: 25px;
}

summary::-webkit-details-marker {
    display: none;
}

details[open] summary {
    margin-bottom: 0px;

}

details[open] div {
    padding: 10px;
}

#opendiv {
    cursor: default;
    font-size: 25px;
}

.kupon-body {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 130px;
    margin-top: 10px;
}

.kupon-body form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.kupon-body h2 {
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    font-size: 30px;
    text-shadow: #00000096 3px 3px 3px;
    margin: 25px auto 20px auto;
    cursor: default;
}

.kupon-body input[type="submit"] {
    background-color: #00000000;
    transition: all 0.3s linear;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    height: 40px;
    width: 100px;
    border: 1px solid #fff;
    outline: none;
    border-radius: 2px;
}

.kupon-body input[type="submit"]:hover {
    background-color: #a08028;
}

.kupon-body input[type="text"] {
    transition: all 0.3s linear;
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 40px;
    width: 230px;
    border: 1px solid #fff;
    outline: none;
    cursor: pointer;
    border-radius: 2px;
    padding: 2px 10px;
    text-align: center;
}

.kupon-uzen p {
    text-decoration: none;
    color: #F44336;
    font-size: 21px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    transform: translateY(30px);
}

.jo {
    color: #a08028 !important;
}