@media screen and (min-width:1280px) {
    main .pdp-component_text_with_video:nth-child(1) .pdp-component_text_with_video--container{
        padding: 0 !important;
    }

    .pdp-component_text_with_video .pdp-component_text_with_video--container{
        padding: 0rem 8.5%;
    }
}

.pdp-component_text_with_video{
    overflow: visible !important;
}

.pdp-component_text_with_video--container{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.pdp-component_text_with_video--grid{
    display: flex;
    align-items: center;
    column-gap: 54px;
    row-gap: 16px;
    width: 100%;
}

@media screen and (min-width:769px) {
    .pdp-component_text_with_video--grid.col-reverse{
        flex-direction: row-reverse;
    }
}

@media screen and (max-width:768px) {
    .pdp-component_text_with_video--grid{
        flex-direction: column-reverse;
        padding: 16px;
        margin: 16px 0;
        border-radius: 16px;
        background: #FFF;
        box-shadow: 16px 16px 100px 0 rgba(130, 177, 239, 0.20);
    }
    .pdp-component_text_with_video{
        padding: 0 1.5rem;
    }
}

.pdp-component_text_with_video--item.video-content{
    border-radius: 16px;
    position: relative;
}

main .pdp-component_text_with_video:nth-child(1) .pdp-component_text_with_video--item.video-content{
    box-shadow: none !important;
}

.video-small .pdp-component_text_with_video--item.video-content{
    width: calc((40% - 54px));
    height: 370px;
}

.video-medium .pdp-component_text_with_video--item.video-content{
    width: calc((50% - 27px));
    height: 370px;
}

.video-large .pdp-component_text_with_video--item.video-content{
    width: calc((60% - 54px));
    height: 370px;
}

.video-small .pdp-component_text_with_video--item.text-content{
    width: 60%;
}

.video-medium .pdp-component_text_with_video--item.text-content{
    width: calc((50% - 27px));
}

.video-large .pdp-component_text_with_video--item.text-content{
    width: 40%;
}

.pdp-component_text_with_video--item.text-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: calc((100% - 54px) / 1);
    padding: 27px 0;
}

.buttons-group{
    display: flex;
    flex-direction: row;
}

.buttons-group .btn{
    display: flex;
    height: 50px;
    padding: 10px 2rem;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    border-radius: 50px;
    color: #fff;
    line-height: 1.3em;
}

.buttons-group .btn:focus{
    display: flex;
    padding: 10px 2rem !important;
}

.buttons-group .btn.btn--primary{
    background: #F5B82F;
}

.buttons-group .btn.btn--secondary{
    background: #84BEA4;
}

.pdp-component_text_with_video--item-media{
    position: relative;
    background-color: #F9F9F9;
    height: 370px;
    overflow: hidden;
    border-radius: 16px;
}

.pdp-component_text_with_video--item-media img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.pdp-component_text_with_video--item-media .play-video__button{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
}

@media screen and (max-width:768px) {
    .pdp-component_text_with_video--item{
        width: 100% !important;
    }

    .buttons-group .btn{
        white-space: wrap;
    }
}

.pdp-component_text_with_video--item .modal--content {
    opacity: 0;
    transition: opacity 2s ease-out;
    position: absolute;
    height: 0;
    padding-bottom: 58.25%;
}

.pdp-component_text_with_video--item .modal--content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pdp-component_text_with_video--item .modal--content.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}