* {
    font-family: 'Nunito Sans', sans-serif;
}

.main_wrapper {
    display: flex;
    flex-direction: column;
}

.button {
    display: block;
    margin: -11px auto;
    width: 389px;
    height: 80px;
    border: none;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    /* background: #ff0000; */
    /* -webkit-box-shadow: 0 0 0 10px rgba(103, 150, 219, 0.3); */
    /* -moz-box-shadow: 0 0 0 10px rgba(103, 150, 219, 0.3); */
    /* box-shadow: 0 0 0 10px #bb272738; */
    /* font-family: 'Montserrat', sans-serif; */
    background-color: rgb(250 204 21);
    font-weight: 700;
    font-size: 26px;
    line-height: 80px;
    color: #000;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    padding: 1rem 0.5rem;
}

.new-list {
    padding: 10px;
}

.new-list li {
    display: flex;
    align-items: flex-start;
    padding: 1rem 0;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
}

.new-list li:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
}

.new-list li svg {
    width: 24px;
    height: 24px;
    fill: #21c65f;
    margin-right: 1rem;
    flex-shrink: 0;
}

.order-block {
    padding: 1.5rem;
    background-color: rgb(17 24 39);
    color: white;
}

.order-block .prices {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.old-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 25px;
}

.new-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.old-price p {
    font-size: 22px;
    line-height: normal;
    margin-bottom: 5px;
}

.new-price p {
    font-size: 22px;
    line-height: normal;
    margin-bottom: 5px;
}

.old-price span {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    text-decoration: line-through;
}

.new-price span {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    color: rgb(250 204 21);
}

.new-button {
    background-color: rgb(250 204 21);
    color: #000;
    padding: 1rem 0.5rem;
    border-radius: 0.375rem;
    text-decoration: unset;
    width: 100%;
    display: block;
    text-align: center;
    font-size: 23px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 20px;
    border: none;
    cursor: pointer;
}

.w-10 {
    width: 2.5rem;
}

.h-10 {
    height: 2.5rem;
}
.flex {
    display: flex;
}
.top-2 {
    top: 0.5rem;
}
.left-7 {
    left: 1.75rem;
}
.absolute {
    position: absolute;
}

.opacity-75 {
    opacity: .75;
}

.bg-yellow-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 240 138 / var(--tw-bg-opacity));
}
.rounded-full {
    border-radius: 9999px;
}
.animate-ping {
    animation: ping 1s cubic-bezier(0,0,.2,1) infinite;
}
.w-full {
    width: 100%;
}
.h-full {
    height: 100%;
}
.inline-flex {
    display: inline-flex;
}

@keyframes ping {
    75%,to {
        transform: scale(2);
        opacity: 0
    }
}

.under-text {
    color: white;
    font-weight: 600;
    text-align: center;
    font-size: 17px;
}

.under-text span {
    display: inline-block;
    padding: 5px;
    color: white;
    line-height: 1;
    border-radius: 3px;
    background-color: rgb(239 68 68);
}

.new-reviews {
    padding: 1.5rem 1rem;
}

.review {
    display: flex;
    padding: 20px;
}

.review .left {
    margin-right: 25px;
}

.rev-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(31 41 55);
}

.rev-avatar span {
    font-weight: 700;
    color: white;
}

.review .right {
    padding-bottom: 30px;
}



.review:not(:last-child) .right {
    border-bottom: 1px solid #e5e7eb;
}

.review .right .rev-name{
    color: rgb(17 24 39);
    font-weight: 700;
}

.rev-date {
    color: gray;
}

.stars {
    display: flex;
    align-items: center;
    margin: 15px 0 10px;
}

.stars svg {
    fill: rgb(250 204 21);
    width: 20px;
    height: 20px;
}

.rev-text {
    color: #374151;
    margin-bottom: 15px;
}

.rev-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
}

.rev-images img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

.input-wrap {
    display: flex;
    flex-direction: column;
}

.input-wrap:not(:last-child) {
    margin-bottom: 15px;
}

.input-wrap label {
    margin-bottom: 5px;
}

.input-wrap input {
    background-color: rgb(31 41 55);
    border: 1px solid #4b5563;
    border-radius: 10px;
    padding: 15px 10px;
    color: white;
}