.page-title{
    font-size: 3rem;
    font-weight: bold;
    padding: 2rem 0;
    @media (max-width:1199px){
        font-size: 2.5rem;
    }
    @media (max-width:769px){
        font-size: 1.5rem;
        padding: 1rem 0;
    }
}
.box-shadow-offer{
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}
.catalog-detail-request-context{
    display: none;
}
.offer-container{
    display: grid;
    grid-gap: 40px;
    grid-template-columns: minmax(0, 1.45fr) minmax(340px, .85fr);
    padding-top: 10px;

    @media (max-width:1199px){
        grid-template-columns: minmax(0, 1.25fr) minmax(330px, .9fr);
        grid-gap: 24px;
    }

    @media (max-width:769px){
        grid-template-columns: 1fr;
    }

    .offer-img-container{
        //background-color: #0a58ca;
        overflow: hidden;
        .owl-stage-outer{
            border-radius: 15px;
        }
    }
    .offer-content-container{
        font-size: 1rem;
        align-self: start;
        position: sticky;
        top: 96px;

        .offer-options{
            border-radius: 15px;
            padding: 10px 20px;
            margin-bottom: 2rem;

            .content-row{
                display: flex;
                justify-content: space-between;
                //margin-bottom: 10px;
                //box-shadow: 0 5px 10px -4px #999999;
                padding: 10px 0;
                position: relative;
                transition: .2s;
                &:before{
                    content: '';
                    position: absolute;
                    z-index: -1;
                    left: 2px;
                    right: 2px;
                    bottom: 14px;
                    height: 0;
                    border-bottom: 1px dashed #DCDEE0;
                }
                div{

                    /*padding: 0 10px;*/
                    &.param-value{
                        text-align: right;
                    }
                    span{
                        background-color: #ffffff;
                        padding-bottom: 5px;
                    }
                }
                border-radius: 5px;
                &:hover{
                    //font-weight: 500;
                    text-shadow: 0 0 1px #111;
                    //box-shadow: 0 0 10px 0 #cccccc;
                }
            }
        }
    }
    .offer-summary-card{
        background: #ffffff;
        border-radius: 18px;
        padding: 24px;
    }
    .offer-status{
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 7px 12px;
        border-radius: 999px;
        background: #f0f7f2;
        color: #17853d;
        font-size: .9rem;
        font-weight: 700;
        margin-bottom: 16px;
    }
    .offer-status:before{
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: currentColor;
    }
    .offer-summary-title{
        font-size: 1.8rem;
        line-height: 1.15;
        font-weight: 800;
        margin: 0 0 8px;
        text-transform: uppercase;
    }
    .offer-summary-subtitle{
        color: #5f6670;
        font-size: 1rem;
        line-height: 1.35;
        margin-bottom: 22px;
    }
    .offer-summary-price{
        padding: 18px;
        border-radius: 14px;
        background: #f6f6f6;
        margin-bottom: 12px;
    }
    .offer-summary-price span,
    .offer-summary-origin span,
    .offer-summary-spec span{
        display: block;
        color: #68717b;
        font-size: .9rem;
        line-height: 1.2;
    }
    .offer-summary-price strong{
        display: block;
        color: #ff0025;
        font-size: 2rem;
        line-height: 1.15;
        margin-top: 6px;
        white-space: nowrap;
    }
    .offer-summary-origin{
        display: flex;
        justify-content: space-between;
        gap: 16px;
        padding: 0 2px 18px;
        border-bottom: 1px solid #e3e6e8;
        margin-bottom: 18px;
    }
    .offer-summary-origin strong{
        white-space: nowrap;
        font-size: 1.05rem;
    }
    .offer-summary-specs{
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-bottom: 18px;
    }
    .offer-summary-spec{
        padding: 12px;
        border-radius: 12px;
        background: #f8f8f8;
    }
    .offer-summary-spec strong{
        display: block;
        margin-top: 4px;
        font-size: 1rem;
        line-height: 1.25;
    }
    .offer-summary-note{
        color: #5f6670;
        font-size: .95rem;
        line-height: 1.45;
        margin: 0 0 18px;
    }
    .offer-summary-cta{
        margin-bottom: 0!important;
        box-shadow: none!important;
        border: 0;
    }
    .offer-price{
        .param-value{
            color: #FF0025;
            font-weight: bold;
            font-size: 1.2rem;
            white-space: nowrap;
        }
        .add-msg{
            padding: 15px;
            font-size: 1rem;
            font-style: italic;
            border-radius: 10px;
            background-color: #e1e1e1;
            margin: 5px 0 25px;
            font-weight: 300;
        }
    };

    .offer-add-options{
        margin: 20px 10px;
        border-radius: 15px;
        padding: 20px;
        h3{
            font-size: 1.5rem;
            margin-bottom: 1rem;
            label{
                transition: .2s;
                display: block;
                &:hover{
                    cursor: pointer;
                    color:#ff0025;
                }
            }
        }
        .option-row{
            display: flex;
            justify-content: space-between;
            gap: 16px;
            padding: 10px 0;
            position: relative;
            transition: .2s;
            font-size: 1rem;
            border-top: solid 1px #dedede;

            .option-col{
                min-width: 0;
                overflow-wrap: anywhere;
                word-break: break-word;
                &.option-value{
                    text-align: right;
                }
            }
        }
        .option-hide{
            height: 0;
            overflow: hidden;
            padding: 0;
            border-width: 0;
        }
        .collapse-checker{
            transition: .2s;
        }
        .option-collapse{
            display:none;
            &:checked ~ .option-hide{
                height: auto;
                padding: 10px 0;
                border-width: 1px;
            }
            &:checked ~ h3 label .collapse-checker{
                transform: rotate(180deg);
            }
        }
    }

    .btn-red{
        display: block;
        background-color: #ff0025;
        color: #fff;
        font-weight: bold;
        margin-bottom: 10px;
        font-size: 1.5rem;
        padding: 15px 20px;
        text-align:center;
        box-shadow: 0 0 10px 5px #999999;
        cursor: pointer;
        transition: .2s;
        width: 100%;
        border-radius: 5px;
        &:hover{
            background-color: rgba(255, 0, 37, 0.75);
        }
    }

    .owl-dots{
        text-align: center;
        .owl-dot{
            width: 10px;
            height: 10px;
            margin: 10px 5px;
            border-radius: 50%;
            background-color: #666;
            &.active{
                background-color: #ff0025;
            }
        }
    }
}
.calc-container .total-action-row {
    display: none;
}
.calc-container{
    padding: 2rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    overflow: auto;
    table.table{
        width: 100%;
        min-width: 400px;
        font-size: 1rem;
        margin-bottom: 2rem;
        tr{

        }
        td{
            padding: 10px;
            min-width: 50px;
            border-bottom: 1px solid #cecece;
        }
        .head-row{
            font-weight: bold;
        }
    }
    .total-country{
        font-weight: bold;
        td{
            border-bottom-width: 2px!important;
        }
    }
    .total-russia{
        font-weight: bold;
        td{
            border-bottom-width: 2px!important;
            padding: 15px 10px!important;
        }
    }
    .calc-add-info{
        a{
            color: #ff0025;
            font-weight: 700;
            border-bottom: 1px solid rgba(255, 0, 37, .35);
        }
        a:hover{
            border-bottom-color: transparent;
        }
        .detailed-calc__contacts{
            padding-top: 32px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;

            @media (max-width:760px){
                flex-direction: column;
                align-items: flex-start;
            }
        }
        .contacts__question{
            margin-top: 16px;
        }
        .contacts__phone{
            font-size: 1.2rem;
            font-weight: bold;
        }
        a.contacts__form{
            color: #ff0025;
            font-size: 1.2rem;
        }
        .btn.btn-red{
            background-color: #ff0025;
            color: #ffffff;
            font-size: 1.2rem;
            padding: 10px 20px ;
            border-radius: 5px!important;


        }
    }
}
.calc-details{
    overflow: visible;
    background: #ffffff;
    border-radius: 18px;
}
.calc-details-summary{
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 18px;
    align-items: center;
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.calc-details-summary::-webkit-details-marker{
    display: none;
}
.calc-details-summary:after{
    content: '';
    width: 12px;
    height: 12px;
    border-right: 2px solid #ff0025;
    border-bottom: 2px solid #ff0025;
    transform: rotate(45deg);
    transition: transform .2s ease;
}
.calc-details[open] .calc-details-summary{
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e2e2;
}
.calc-details[open] .calc-details-summary:after{
    transform: rotate(225deg);
}
.calc-details-summary__title{
    display: block;
    font-size: 1.9rem;
    line-height: 1.2;
    font-weight: 800;
}
.calc-details-summary__hint{
    display: block;
    margin-top: 6px;
    color: #68717b;
    font-size: 1rem;
    line-height: 1.35;
}
.calc-details-summary__total{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 12px 16px;
    border-radius: 999px;
    background: #fff1f3;
    color: #ff0025;
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 800;
    white-space: nowrap;
}
.calc-details-body{
    overflow: auto;
}
.slick-slide{
    cursor: pointer;
    //border-radius: 10px;
    //overflow: hidden;
    img{
        width: 100%;
        border-radius: 10px;
        max-height: 470px;
        object-fit: cover;

        @media (max-width: 769px){
            max-height: 350px;
        }
        @media (max-width: 759px){
            max-height: 350px;
        }
        @media (max-width: 500px), (min-width: 770px) and (max-width: 1190px){
            max-height: 270px;
        }

    }
}
.slider-nav{
    margin-top: 5px;
    .slick-slide{
        padding: 5px;
        &.slick-current{
            img{
                box-shadow: 0 1px 5px #ff0025;
            }
        }
    }
}
.slick-btn{
    position: absolute;
    font-size: 1.4rem;
    background-color: rgba(255, 255, 255, 0.80);
    color: #ff0025;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    box-shadow: 0 0 10px 1px #666;
    transition: .2s;



    &:hover{
        background-color: rgba(0, 0, 0, 0.80);;
    }
    &.slick-next{
        right: 5px;
    }
    &.slick-prev{
        left: 5px;

    }

    @media (max-width:769px){
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }
}
