@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #222;
}

::-webkit-scrollbar-thumb {
    background-color: #222;
    outline: 1px solid #222;
}

*:focus {
    outline: none;
}

:root {
    --mainColor: #ff9800;
    --secondColor: #2C3E50;
}

a {
    color: var(--mainColor)
}

a:hover {
    color: var(--mainColor)
}

h1 {
    margin: 0;
}

html, body {
    background-color: #fafafa;
    height: 100%;
}

button:focus {
    outline: none;
}

.limiter {
    min-height: 100%;
    background-image: url(../images/backend.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.container-pay {

}

/* Header */

.mobile-header {
    display: none;
    background-color: rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(0,0,0,0.4);
    padding: 15px 15px;
    align-items: baseline;
    justify-content: center;
    position: relative;
}

.mobile-header .mobile-header-menu {
    display: none;
    flex-direction: column;
}

.header {
    background-color: rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(0,0,0,0.4);
    display: flex;
    padding: 15px 15px;
    align-items: center;
    justify-content: center;
}

.header h1 {
    color: #222;
    font-size: 1.3em;
}

.header a, .mobile-header a {
    font-size: 13px;
    background-size: 2px 2px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    margin: 0 15px;
    margin-top: 2px;
    transition: 0.5s;
    font-weight: 500;
    position: relative;
}

.link-wrapper {
    position: relative;
    display: flex;
    padding: 20px 0;
    text-align: center;
}

.hover:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    background-color: var(--mainColor);

    transition: transform 0.3s;
}

.hover:hover:after {
    transform: scaleX(1);
}

.menu-open {
    background: rgba(0,0,0,0.3);
    color: #fff;
    border: 0;
    padding: 10px 15px;
    outline: none;
}

@media screen and (max-width: 1130px) {
    .header {
        display: none;
    }

    .mobile-header {
        display: flex;
        flex-direction: column;
    }
}

/* end Header */

/* Payment Page */

.wrapper {

}

.card-form {
    margin: auto;
    margin-top: 50px;
    max-width: 600px;
    width: 100%;
    padding: 50px 0;
    position: relative;
}

.pay-form {
    width: 100%;
}

.pay-form fieldset {
    background: rgba(0,0,0,.7);
    border: 0 none;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 10px -2px rgba(62, 62, 62, 0.4);
    padding: 30px 30px;
    box-sizing: border-box;
    border-radius: 10px;
    position: relative;
}

.pay-form fieldset:not(:first-of-type) {
    display: none;
}

.input-label {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.fs-title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
    font-family: Inter;
    font-weight: bold;
    line-height: 25px;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 14px;
    color: #fff;
    margin-bottom: 20px;
}

.pay-form select>option {
	background-color: rgb(50 45 45 / 68%);
}

.pay-form input, .pay-form textarea, .pay-form select {
    padding: 15px;
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 10px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(0,0,0,0.2);
    font-family: Inter;
    color: #fff;
    font-size: 12px;
}

.pay-form input::placeholder {
    color: #fff;
}

.pay-form input:focus, .pay-form textarea:focus, .pay-form select:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid var(--mainColor);
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}

.container-pay-form-btn {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.container-pay-form-btn a {
    display: flex;
    align-items: center;
}

.wrapper-steam-id {
    display: flex;
    justify-content: space-between;
}

.wrapper-steam-id a {
    font-size: 14px;
    margin-bottom: .5rem;
    font-weight: 500;
    color: #fff;
}

.pay-form .action-button {
    width: fit-content;
    background: var(--mainColor);
    font-weight: bold;
    font-family: Inter;
    font-size: 14px;
    color: white;
    border: 0 none;
    border-radius: 10px;
    cursor: pointer;
    padding: 15px 15px;
    margin: 10px 0;
    text-decoration: none;
    transition: 0.5s;
}

.pay-form .action-button:hover, .pay-form .action-button:focus {
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1), 0 0 0 3px var(--mainColor);
    color: #fff;
}

.pay-form .action-button-previous {
    width: 100px;
    background: #C5C5F1;
    font-weight: bold;
    font-family: Inter;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
    transition: 0.5s;
}

.pay-form .action-button-previous:hover, .pay-form .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    counter-reset: step;
    display: none;
}

#progressbar li {
    list-style-type: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 9px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    position: relative;
    letter-spacing: 1px;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: rgba(0,0,0,0.3);
    border-radius: 25px;
    margin: 10px 0 ;
    text-align: center;
}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1;
}

#progressbar li:first-child:after {
    content: none;
}

#progressbar li.active:before, #progressbar li.active:after {
    background: var(--mainColor);
    color: white;
}

.footer-div {
    display: flex;
    margin-top: 20px;
    justify-content: center;
    padding-bottom: 20px;
}

@media screen and (max-width: 700px), (max-height: 500px) {
    .wrapper {
        flex-wrap: wrap;
        flex-direction: column;
    }
}
/* End Payment Page */

/* Monitoring Page */

.monitor-container {
    display: flex;
    width: 65%;
    margin: auto;
    margin-top: 50px;
    flex-direction: column;
    background-color: rgba(0,0,0,0.6);
    border-radius: 10px;
    box-shadow: 0 0 10px -2px rgba(62, 62, 62, 0.4);
    padding: 30px 30px;
}

.monitoring-table {
    width: 100%;
}

.monitoring-table-thead {
    background-color: rgba(0,0,0,0.3);
    border-radius: 10px;
}

.monitoring-table-thead th {
    color: #fff;
    padding: 10px 15px;
}

.monitoring-table-item:hover {
    background: rgba(0,0,0,0.3);
}

.monitoring-table-item th {
    padding: 20px 10px;
    color: #fff;
    font-size: 14px;
}

.monitoring-table-item th:first-child {
}

.monitoring-table-item .action-button-second {
    width: fit-content;
    background: var(--mainColor);
    font-weight: bold;
    font-family: Inter;
    font-size: 14px;
    color: white;
    border: 0 none;
    border-radius: 10px;
    cursor: pointer;
    padding: 10px 15px;
    margin: 10px 0;
    text-decoration: none;
    transition: 0.5s;
}

.monitoring-table-item .action-button-second:hover, .monitoring-table-itemform .action-button-second:focus {
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1), 0 0 0 3px var(--secondColor);
}

.monitoring-table-item .action-button {
    width: fit-content;
    background: var(--mainColor);
    font-weight: bold;
    font-family: Inter;
    font-size: 14px;
    color: white;
    border: 0 none;
    border-radius: 10px;
    cursor: pointer;
    padding: 10px 15px;
    margin: 10px 0;
    text-decoration: none;
    transition: 0.5s;
}

.monitoring-table-item .action-button:hover, .monitoring-table-itemform .action-button:focus {
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1), 0 0 0 3px var(--mainColor);
}

.wrap-monitoring {
    overflow: auto;
}

/* End Monitoring Page */

/* Success Page */

.payment-title-container {
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: space-between;
}

.payment-title-container img {
    width: 30px;
    margin-right: 20px;
}

.container-custom {
    background: rgba(0,0,0,0.6);
    border: 0 none;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 10px -2px rgba(62, 62, 62, 0.4);
    padding: 30px 30px;
    box-sizing: border-box;
    border-radius: 10px;
    position: relative;
}

.container-custom ol {
    list-style-type: none;
}

.payment-title-container-text {
    margin-top: 20px;
}

.payment-title-container-item {
    border-radius: 10px;
    background: rgba(0,0,0,0.1);
    padding: 15px 0;
    display: flex;
    font-weight: 500;
    align-items: center;
    margin-bottom: 10px;
}

.payment-title-container-text span {
    display: block;
    font-size: 14px;
    margin-left: 10px;
    line-height: 18px;
    color: #fff;
}

.payment-title-container-item-number {
    display: block;
    background-color: var(--mainColor);
    padding: 3px 7px;
    color: #fff;
    border-radius: 5px;
    font-size: 12px;
}

.txt1 {
    color: #fff;
}

/* End Success Page */

/* Modal */

.modal-wrapper{
    width:100%;
    height:100%;
    position:fixed;
    top:0; left:0;
    background: rgba(0,0,0,0.5);
    visibility:hidden;
    opacity:0;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.modal-wrapper.open{
    opacity:1;
    visibility:visible;
}

.modal-custom{
    width: 600px;
    height: 400px;
    display:block;
    margin:50% 0 0 -300px;
    position:relative;
    top:50%;
    left:50%;
    background: rgba(0,0,0,0.6);
    border-radius: 10px;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.modal-wrapper.open .modal-custom{
    margin-top:-200px;
    opacity:1;
}

.modal-custom .head{
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    overflow: hidden;
}

.btn-close{
    width:32px;
    height:32px;
    display:block;
    float:right;
}

.btn-close::before, .btn-close::after{
    content:'';
    width: 20px;
    height:6px;
    display:block;
    background:#fff;
}

.btn-close::before{
    margin-top:12px;
    -webkit-transform:rotate(45deg);
    -moz-transform:rotate(45deg);
    -o-transform:rotate(45deg);
    transform:rotate(45deg);
}

.btn-close::after {
    margin-top:-6px;
    -webkit-transform:rotate(-45deg);
    -moz-transform:rotate(-45deg);
    -o-transform:rotate(-45deg);
    transform:rotate(-45deg);
}

.content {
    color: #fff;
    padding: 25px;
}

.content span {
    display: flex;
}

@media screen and (max-width: 700px) {
    .modal-custom {
        width: 90%;
        margin: 50% auto;
        left: 0;
    }

    .card-form {
        width: 90%;
    }
}

/* End Modal */