input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input::placeholder {
    color: black;
}

input::-webkit-input-placeholder {
    color: black;
}
.popUpPayment {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(.8);
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(239 243 244 / 85%);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.popUpPayment.show {
    display: flex;
    align-items: cetner;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.conFld input {
    background-color: #ffffff;
    border-color: #0010FF;
    border-radius: 5px;
}

.conForm {
    font-family: "Rubik", Sans-serif;
    padding: 24px;
    border-radius: 8px;
    box-shadow: -1px 1px 14px 0px rgb(128 128 128 / 17%);
    -webkit-box-shadow: -1px 1px 14px 0px rgb(128 128 128 / 17%);
    -moz-box-shadow: -1px 1px 14px 0px rgb(128 128 128 / 17%);
}

.conFld select {
    color: back;
    background-color: #ffffff;
    border-color: #0010FF;
    border-radius: 5px;
}

.flexCon {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.conFld {
    display: grid;
    gap: 14px;
}

.btn {
    margin-top: 15px;
}

.btn button {
    background-color: #001DFF;
    color: #ffffff;
    border: none;
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    border-radius: 5px;
}
.conPop{
    position: relative;
    max-width: 525px;
    width: 100%;
    min-width: 85px;
    background: white;
    padding: 32px;
    box-shadow: -1px 1px 14px 0px rgba(128, 128, 128, 0.75);
    -webkit-box-shadow: -1px 1px 14px 0px rgba(128, 128, 128, 0.75);
    -moz-box-shadow: -1px 1px 14px 0px rgba(128, 128, 128, 0.75);
    border-radius: 8px;
}
.checkCode{
    background-color: #001DFF;
    color: #ffffff;
    border: none;
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    margin-top: 10px;
    border-radius: 5px;
}
.checkCode:hover{
    background-color: #001DFF !important;
    transition: 0.3;
    opacity: 0.8;
}
.titleStep{
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
}
.error{
    color: red;
    margin-top: 5px;
    font-width: 600;
    text-align: center;
}
.nextStep{
    background-color: #001DFF;
    color: #ffffff;
    border: none;
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    margin-top: 10px;
    border-radius: 5px;
}
.nextStep:hover{
    background-color: #001DFF !important;
    transition: 0.3;
    opacity: 0.8;
}
.btnCon{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.prev{
    background-color: gray;
    color: #ffffff;
    border: none;
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    margin-top: 10px;
    border-radius: 5px;
    transition: 0.3;
    opacity: 0.8;
}
.prev:hover{
    background-color: gray !important;
}
.inp {
    background-color: #ffffff;
    border-color: #0010FF !important;
    border-radius: 5px !important;
}
.closeP{
    cursor: pointer;
    position: absolute;
    top: 3px;
    right: 17px;
    font-size: 22px;
} 