body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    position: relative;
}
main {
    max-width: 576px;
    margin: 0 auto;
    padding: 20px 10px;
}
h1 {
    font-size: 32px;
    font-weight: 700;
}
h2 {
    font-size: 20px;
    font-weight: 700;
}
p {
    font-size: 16px;
}
ul,
ol {
    margin: 0 0 8px;
    padding-left: 28px;
}
a {
    color: #1d8e86;
    font-weight: 600;
    cursor: pointer;
}
button {
    font-family: 'Montserrat', sans-serif;
    background-color: #08847b;
    border-radius: 16px;
    -webkit-box-shadow: 0 4px 20px rgba(103, 238, 228, 1);
    -moz-box-shadow: 0 4px 20px rgba(103, 238, 228, 1);
    box-shadow: 0 4px 20px rgba(103, 238, 228, 1);
    padding: 24px 30px;
    margin: 0;
    border: none;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
button:active,
button:focus,
button:hover {
    border: none;
    outline: none;
    box-shadow: none;
}
input {
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    background-color: transparent;
    border: 1px solid #919191;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    color: #555353;
    text-align: left;
    box-shadow: none;
    transition: all 0.5s ease-in-out;
    max-width: 100%;
    width: 100%;
    padding: 14px;
}
.input-error {
    border: 1px solid #ff0000;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    background-color: transparent;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    color: #555353;
    text-align: left;
    box-shadow: none;
    transition: all 0.5s ease-in-out;
    max-width: 100%;
    width: 100%;
    padding: 14px;
}
input::placeholder {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    color: #919191;
    opacity: 1;
}
input:focus {
    outline: none;
    border-color: #07847b;
    -webkit-box-shadow: 0px 3px 26px -19px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 3px 26px -19px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 3px 26px -19px rgba(0, 0, 0, 0.5);
}
.info-block {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.info-block p {
    margin: 0;
    line-height: 24px;
}
.info-block .order-package {
    margin-bottom: 20px;
}
.info-block .order-package-variant {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.m-5 {
    margin-bottom: 20px;
}
.info-block .total-price {
    text-align: right;
    margin-top: 20px;
}
.images {
    margin-top: 20px;
}
.card-logos {
    margin: 0 auto;
    text-align: center;
}
.card-logos img {
    padding: 4px;
    width: 52px;
    height: 38px;
}
.bank-logo {
    margin: 20px 0;
    text-align: center;
}
.bank-logo img {
    width: 250px;
    height: 52px;
}
.secure-logos {
    margin: 0 auto;
    text-align: center;
}
.secure-logos .master-secure {
    width: 140px;
    height: 38px;
    padding-right: 20px;
}
.secure-logos .visa-secure {
    width: 52px;
    height: 38px;
    padding-left: 20px;
}
.buy {
    padding: 20px 30px;
}
body.modal-content {
    overflow: hidden;
}
.modal {
    display: flex;
    position: fixed;
    z-index: 9999;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    visibility: hidden;
}
.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 20px rgba(93, 93, 93, 0.16);
}
.modal-content h1 {
    text-align: center;
}
.modal-content h2 {
    font-weight: 400;
    font-size: 16px;
    margin: 4px 0;
}
.modal-content p {
    line-height: 24px;
    margin: 0 0 4px;
}
.modal-content .logo {
    margin-bottom: 20px;
}
.close {
    cursor: pointer;
    position: sticky;
    top: 8px;
    color: #c4c4c4;
    width: 40px;
    height: 40px;
    font-size: 30px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: #fff;
    z-index: 10;
}
.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.center {
    text-align: center;
}
.justify {
    text-align: justify;
}
.error {
    margin-top: 4px;
    color: #ff0000;
}
.mb20 {
    margin-bottom: 20px;
}
.inside-list {
    display: flex;
    justify-content: space-between;
}
.inside-list-line {
    margin: 0 16px;
}
.back-link {
    font-family: 'Montserrat', sans-serif;
    background-color: #08847b;
    border-radius: 16px;
    -webkit-box-shadow: 0 4px 20px rgba(103, 238, 228, 1);
    -moz-box-shadow: 0 4px 20px rgba(103, 238, 228, 1);
    box-shadow: 0 4px 20px rgba(103, 238, 228, 1);
    padding: 12px 16px;
    margin: 0;
    border: none;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
}
.flex-center {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
