
.front-header{
    background: linear-gradient(4deg,#3b4e76 4.51%,#111521 74.17%);
    padding: 10px 0;
}
.center-view{
    width: 100%;
    justify-content: center;
    display: flex;
}
.front-header .app-header__logo{
    display: flex;
    align-items: center;
    background: transparent;
}

.front-body.web-app-content{
    padding-left: 0;
    padding-right: 0;
    margin: 0;
}


.buyback-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    margin-top: 50px;
}

.buyback-wrapper .buyback-box-title {
    width: max-content;
    display: block;
    cursor: default;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: #4870B6;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
}

.buyback-wrapper .two-cols {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 32px;
}

.buyback-wrapper .two-cols .column {
    position: relative;
}

.buyback-wrapper input[type="radio"] {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.buyback-wrapper .buyback-card {
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.5s ease;
    height: 100%;
}

.buyback-wrapper .buyback-card:hover {
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}
.buyback-wrapper .buyback-card .col-title {
    display: block;
    width: 100%;
    background-color: #4870B6;
    color: #fff;
    border-radius: 2px;
    font-size: 20px;
    line-height: 25px;
    font-weight: 500;
    text-align: center;
    padding: 10px;
    text-transform: uppercase;
}

.buyback-wrapper .buyback-card .col-body {
    padding: 20px 20px 64px;
    height: 100%;
    position: relative;
}

.buyback-wrapper .buyback-card .col-body p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 200;
    color: rgba(5, 12, 23, 0.84);
}

.buyback-wrapper .buyback-card .col-body .checkmark {
    display: block;
    text-align: center;
    padding: 10px 30px;
    background-color: #e5e5e5;
    color: #fff;
    width: max-content;
    margin: 0 auto;
    border-radius: 22px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 9;
}
.buyback-wrapper .buyback-card .col-body .checkmark svg{
    opacity: 0;
    visibility: hidden;
    fill: #fff;
    display: none;
}
.buyback-wrapper .buyback-card .col-body .checkmark span{ 
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: rgba(5, 12, 23, 0.84);
}
.buyback-wrapper input[type="radio"]:checked + .buyback-card .col-body .checkmark span{ 
    display: none;
}
.buyback-wrapper input[type="radio"]:checked + .buyback-card .col-body .checkmark {
    background-color: #4870B6;
}
.buyback-wrapper input[type="radio"]:checked + .buyback-card .col-body .checkmark svg{
    visibility: visible;
    opacity: 1;
    fill: #fff;
    display: block;
}

.error-font{
    font-size: 15px;
    font-weight: bold;
}

@media (max-width: 991px){
    .buyback-wrapper .buyback-box-title { font-size: 18px; }
    .buyback-wrapper .buyback-card .col-title { font-size: 18px; }
}
@media (max-width: 767px){
    .buyback-wrapper .two-cols { gap: 20px; flex-direction: column; }
    .buyback-wrapper { margin-top: 30px; margin-bottom: 20px; }
}


