.screen {
    text-align: center;
    position: relative;
}

.screen .title {
    max-width: 80%;
    margin: 0 auto;

    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #000000;
}
.screen .helper {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
}

.screen .quiz-options {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    gap: 10px;
    width: 100%;
}
.screen .quiz-options .option {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 48%;

    background-color: white;
    border: 1px solid gray;
    border-radius: 5px;
    padding: 30px 25px;
    cursor: pointer;
    user-select: none;

    overflow: hidden;
}
.screen .quiz-options .option.selected {
    background-color: rgb(128 128 128 / 21%);
}

.screen .button-previous-screen {
    cursor: pointer;
    color: #7A7A7A;
}
.screen .button-next-screen {
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    border: 1px solid #000000;
    padding: 10px 40px;
    user-select: none;
}

.screen .button-next-screen.button-secondary {
    background-color: #FFFFFF;
    color: #000000;
}
.screen .button-next-screen.button-secondary.disabled {
    background-color: transparent;
    cursor: default;
    color: #7A7A7A;
    border-color: #7A7A7A;
}

.screen .button-next-screen.button-primary {
    border: none;
    background-color: #f9b101;
    color: #292929;
}
.screen .button-next-screen.button-primary.disabled {
    background-color: #c5c5c5;
    color: #8c8c8c;
}

.screen.screen-entry .title {
    font-size: 26px;
    line-height: 31px;
}

/* Owl Carousel */
.screen .owl-theme .owl-nav [class*=owl-]:hover {
    background: none;
    color: #000000;
}
.screen .owl-theme .owl-nav [class*=owl-] {
    background: none;
    color: #7A7A7A;
}

.screen .owl-theme .owl-nav {
    position: absolute;
    top: 45%;
    width: 100%;
}
.screen .owl-theme .owl-nav .owl-prev{
    float:left;
}
.screen .owl-theme .owl-nav .owl-next{
    float:right;
}
.screen .owl-carousel .owl-item img {
    height: auto;
    width: auto;
    max-width: 100%;
    min-height: 100%;
    max-height: 380px;
    margin: 0 auto;
}


.screen table.summary {
    text-align: left;
}
.screen table.summary tr > td:last-of-type {
    text-align: right;
}

.screen .cart .line-item {
    background-color: #fbfbfb;
}
.screen .cart .line-item .image-wrapper {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.screen .cart .line-item .image-wrapper img {
    width: auto;
    height: auto;
    margin: 0 auto;
    max-height: 350px;
    max-width: 100%;
    object-fit: contain;
}
.screen .cart .line-item .description .button-details{
    font-size: 14px;
    text-decoration: underline;
	color: #1b73e8;
	padding-top: 10px;
}

.yellow-btn {
    background-color: #f9a216;
    color: white;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    user-select: none;
    padding: 15px 40px;
	border-radius: 40px;
    outline: none;
}

.white-btn-with-border {
    background-color: #ffffff;
    color: #f9a216;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    user-select: none;
    padding: 15px 20px;
    outline: none;
    border-color: #f9a216;
	border-radius: 40px;
    border-style: solid;
}

.variant-btn {
	line-height: 0;
    font-size: 18px;
    font-weight: 400;
    padding: 20px 35px;
    border: 1px solid;
    color: #000000;
    border-color: #000000;
    border-radius: 7px;
}

.change-shoobox-size-button{
	border: 2px solid #000000;
    padding: 12px 20px 12px 20px;
    border-radius: 5px;
}

.white-mat {
	background-color: transparent;
    width: 428px;
    margin-top: 50px;
    margin-bottom: 70px;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-radius: 5px;
}

/*======================================================
					  400
======================================================*/


@media (max-width: 428px){
    .white-mat {
        box-sizing: border-box;
        width: 100%;
        min-width: auto;
        padding: 0 20px;
    }

    .screen .quiz-options .option {
        padding: 30px 6px;
    }

    .screen .button-next-screen {
        padding: 10px 0;
        width: 100%;
    }

    .screen .owl-carousel .owl-item img {
       max-height: 320px;
    }

    .screen .cart .line-item .image-wrapper {
        height: 280px;
    }
    .screen .cart .line-item .image-wrapper img {
        max-height: 280px;
    }
}

@media (max-width: 350px){
    .screen .quiz-options .option {
        flex-basis: auto;
        flex-grow: 1;
    }
}