/* FONTS */
@font-face {
    font-family: "Quentin";
    src: url('fonts/quentin.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
html, body{
	font-family: proxima-nova, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
}
*{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    color: inherit;
}
.mint_field{
    min-width: 24px;
    min-height: 24px;
}
#overdiv,
#overdiv *::placeholder,
#overdiv input,
#overdiv textarea,
#overdiv button{
    font-family: proxima-nova, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.025em;
    color: #454545;
}
#overdiv div,
#overdiv input,
#overdiv textarea{
    box-sizing: border-box;
}
#overdiv input,
#overdiv textarea,
#overdiv select{
    font-family: proxima-nova, sans-serif;
    border: 1px solid #053F57;
    box-shadow: 2px 2px 0px #FD7462;
    border-radius: 5px;
    padding: 8px 10px;
}
#overdiv input[type='checkbox'] {
	width: auto;
	background: #ffffff;
	border: 0;
	box-shadow: none;
	border-radius: 0;
	margin-bottom: 0;
}
.checkbox-container {
	font-size: 14px;
	line-height: 21px;
	font-weight: 400;
	position: relative;
	display: block;
	margin-bottom: 16px;
	cursor: pointer;
}
.checkbox-container .checkbox {
	width: 14px;
	height: 14px;
	display: inline-block;
	background-color: #ffffff;
	border: 1px solid #053F57;
	border-radius: 2.5px;
	position: absolute;
	top: 2px;
	left: 0;
	z-index: 50;
}
.checkbox-container > span:last-child {
	margin-left: 8px;
}
.checkbox-container input:checked + .checkbox {
	background-color: #89D2DB;
	background-image: url("images/checked.svg");
	background-repeat: no-repeat;
	background-position: 50% 50%;
}
#overdiv textarea {
	width: 100%;
	height: 128px;
	resize: none
}
#overdiv select {
	width: 100%;
	padding: 11px 10px;
	height:42px;
}
.flex{
    display: flex;
    flex-wrap: wrap;
}
.flex_nowrap{
    display: flex;
}
.space_between{
    justify-content: space-between;
}
.overdiv{
    max-width: 1136px;
    margin: 0 auto;
}
.mt-24px {
	margin-top: 24px;
}
.white-color,
.white-color i {
	color: #ffffff;
}
.blue-color,
.blue-color i {
	color: #053F57;
}

/*Background image*/
.bg_container{
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}
.bg_container img{
    display: none;
}

/*COOKIES
========================================================================== */
.cookie_bar{
    background: #89D2DB;
    box-shadow: 0px -2px 0px #053F57;
    font-family: proxima-nova;
    font-style: normal;
    padding: 14px;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #053F57;
}
.cookie_bar input{
    display: inline-block;
    width: 136px;
    min-width: 136px;
    height: 48px;
    background-color: #053F57;
    border: 1px solid #053F57;
    box-shadow: 2px 2px 0px #FD7462;
    border-radius: 5px;
    color: #FFFFFF;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
}
.cookie_refuse_button{
    opacity: 0.5;
    background-color: #ffffff!important;
    color: #053F57!important;
}
.cookie_refuse_button:hover{
    opacity: 0.8;
    background-color: #ffffff!important;
}

/*FONT STYLES
========================================================================== */
.title{
    font-size: 54px;
    line-height: 64px;
}
.h1{
    font-size: 20px;
    line-height: 30px;
    font-weight: normal;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.h2{
    font-size: 18px;
    line-height: 27px;
    font-weight: normal;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/*TEXT COLOUR
========================================================================== */
.white{
    color: #FFFFFF;
}
.blue,
#footer a{
    color: #053F57;
}
.black{
    color: #000000;
}

/*BACKGROUND
========================================================================== */
.white_background{
    background-color: #FFFFFF;
}
.sky_background{
    background-color: #89D2DB;
}
.blue_background{
    background-color: #053F57;
    color: #FFFFFF;
}
.light_grey_background{
    background-color: #F6F6F6;
}
.darker_background{
    background-color: rgba(0, 0, 0, 0.1);
}

/*BUTTON
========================================================================== */
#overdiv button,
.button{
    display: inline-block;
    min-width: 216px;
    background-color: #FFFFFF;
    border: 1px solid #053F57;
    box-shadow: 2px 2px 0px #FD7462;
    border-radius: 5px;
    padding: 8px 10px;
    color: #053F57;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    cursor:pointer;
}
#overdiv.no_admin button:hover,
#overdiv.no_admin .button:hover {
    cursor: pointer;
    color: #FFFFFF;
    background-color: #053F57;
}
#overdiv.no_admin button:hover a,
#overdiv.no_admin .button:hover a{
    color: #FFFFFF;
}
/* Primary */
#overdiv button.primary,
.button.primary {
	color: #ffffff;
	background-color: #053F57;
}
/* With icon */
#overdiv button.with-icon,
#overdiv .button.with-icon {
	min-width: 102px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 20px;
	padding-right: 20px;
}
button.with-icon > span:first-child,
.button.with-icon > span:first-child {
	width: 22px;
	height: 19px;
	margin-right: 10px;
	margin-bottom: 3px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}
#overdiv i {
	font-size: 18px;
}
.back-icon {
	background-image: url("images/back.svg");
}
.basket-icon {
	/* background-image: url("images/basket_blue.svg"); */
}
button.with-icon:hover .back-icon,
.button.with-icon:hover .back-icon {
	background-image: url("images/back_white.svg");
}
.pencil-icon {
	background-image: url("images/pencil.svg");
}
button.with-icon:hover .pencil-icon,
.button.with-icon:hover .pencil-icon {
	background-image: url("images/pencil_white.svg");
}
.print-icon {
	background-image: url("images/print.svg");
}
button.with-icon:hover .print-icon,
.button.with-icon:hover .print-icon {
	background-image: url("images/print_white.svg");
}

/*HEADER
========================================================================== */
#header .light_grey_background{
    border-top: 4px solid #89D2DB;
}
#head_container_homepage,
#head_container{
    max-width: 1344px;
    margin: 0 auto;
}
#head_container_homepage{
    position: absolute;
    z-index: 3;
    left: 50%;
    transform: translate(-50%);
}
#head_container_homepage,
#head_container{
    width: 100%;
    height: 120px;
    justify-content: space-between;
    align-items: center;
}
#logo{
    max-width: 158px;
}
#tabs ul{
    margin-left: 0;
    display: flex;
    list-style-type: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
#tabs > ul > li{
    margin: 0 16px;
    position: relative;
}
#tabs > ul > .menu_selected{
    color: #FD7462;
    border-bottom: 4px solid #FD7462;
}
#tabs > ul > li:hover > ul{
    visibility: visible;
    transition-delay: 0s;
    opacity: 10;
}
#tabs > ul > li > ul{
    display: block;
    position: absolute;
    left: 0;
    z-index:999;
    visibility: hidden;
    top: 100%;
    transition: 0.2s 0.2s;
    opacity: 0;
	padding-top: 14px;
}
#tabs > ul > li > ul > li{
    display: inline-block;
    background-color: #053F57;
    color: #FFFFFF;
    border-radius: 5px;
    padding: 16px;
	margin-bottom: 4px;
}
#tabs > ul > li > ul > li > div > a {
	white-space: nowrap;
}
#tabs > ul > li > ul > li:hover, #tabs > ul > li > ul > .menu_selected{
    color: #89D2DB;
}
#tabs > ul > li > ul > li > div > a::after{
	content: "";
	display: inline-block;
	vertical-align: top;
    background: url("images/submenu_arrow.svg") no-repeat 50% 50%;
    width: 16px;
    height: 24px;
    visibility: hidden;
	margin-left: 6px;
}
#tabs > ul > li > ul > li:hover > div > a::after,
#tabs > ul > li > ul > .menu_selected::after{
    visibility: visible;
}
#head_title_page{
    padding: 29px 0;
    text-align: center;
}
.head-top {
	position: relative;
}
.header-basket {
	display: flex;
	align-items: center;
	text-transform: uppercase;
	cursor: pointer;
	margin-left: 32px;
}
.quantity-container {
	margin-right: 8px;
	position: relative;
}
.quantity-container i {
	color: #89D2DB;
}
.quantity-container.white-color i {
	color: #ffffff;
}
.quantity-container .basket-quantity {
	width: 20px;
	height: 20px;
	font-size: 14px;
	line-height: 21px;
	color: #ffffff;
	text-align: center;
	display: inline-block;
	background: #053F57;
	border-radius: 100%;
	position: absolute;
	top: -9px;
	left: -16px;
}
/*HEADER MOBILE*/
#mobileMenuArea{
    height: 20px;
    width: 24px;
    display: none;
    cursor: pointer;
    z-index: 1000;
    box-sizing: border-box;
}
#mobileMenuArea.standard_mobile{
    background: url("images/hamburger_blue.svg") no-repeat 50% 50%;
}
#mobileMenuArea.home_mobile{
    background: url("images/hamburger_white.svg") no-repeat 50% 50%;
}
.UIsideBar{
    position: fixed;
    width: 100%;
    display: none;
    top: 0;
    bottom: 0;
    overflow: auto;
    background-color: rgba(0,0,0,0.45);
    z-index: 1000;
    color: #FFFFFF;
    text-align: center;
}
#sidebar_menu_title{
    font-family: Quentin;
    font-weight: normal;
    font-size: 45px;
    line-height: 67px;
    padding: 20px 25px 0;
}
#close_sidebar{
    content:"";
    background: url("images/close.svg") no-repeat 50% 50%;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 33px;
    top: 32px;
    background-size: cover;
    cursor: pointer;
}
#sideBarContent{
    background-color: #FD7462;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 70px 0 47px;
}
#sidebar_menu, #sidebar_basket{
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.05em;
}
#sidebar_menu ul{
    list-style-type: none;
    text-transform: uppercase;
}
#sidebar_menu ul li{
    max-width: 100%;
    cursor: pointer;
}
#sidebar_menu ul > li > div{
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 20px 15px;
}
#sidebar_menu > ul > li > ul{
    display: none;
    background-color: #053F57;
    font-size: 18px;
    line-height: 27px;
}
#sidebar_menu ul > li > ul > li > div{
    padding: 20px 25px;
}
#sidebar_basket{
    justify-content: center;
    margin-left: 0;
}
#sidebar_basket .quantity-container i{
    color: #FFFFFF;
}
.submenu_dropdown{
    background: url("images/arrow_down.svg") no-repeat 50% 50%;
    background-size: contain;
    width: 16px;
    height: 26px;
    margin-left: 8px;
    margin-right: -18px;
    transition-duration: 0.3s;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
}
.rotate{
    transition-duration: 0.3s;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

/*FOOTER
========================================================================== */
#event_footer{
    padding: 72px 0 88px;
}
#event_footer_title{
    text-align: center;
}
#event_footer_container .event_block_full_container{
    width: 256px;
    overflow: hidden;
    margin: 40px 24px;
}
#event_footer_container .event_image_block{
    height: 192px;
}
#event_footer_container .event_details_title a{
    color: #FFFFFF;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0.025em;
}
#event_footer_container .event_details{
    margin: 8px 0;
}
#event_footer_button_container{
    display: flex;
    justify-content: center;
}
#foot_getintouch_container{
    justify-content: center;
    align-items: center;
}
#foot_container{
    font-size: 14px;
    font-weight: normal;
    line-height: 21px;
    color: #A3A3A3;
    padding: 24px 0;
    justify-content: space-between;
    border-top: 4px solid #053F57;
}
#foot_right img{
    margin-left: 16px;
}

/*HOMEPAGE
========================================================================== */
/*banner section*/
#home_banner_container,
#home_banner{
    position: relative;
    height: 600px;
    overflow: hidden;
}
#home_banner_container .vp-vimeo-wrapper{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
#home_banner_container iframe{
    width: 100vw;
    height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
    min-height: 100vh;
    min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#home_banner::before{
    content: "";
    position: absolute;
    background-color: rgba(34, 34, 34, 0.3);
    width: 100%;
    height: 100%;
    z-index: 1;
}
#home_banner > div{
    font-size: 14px;
    line-height: 10px;
}
#home_logo_text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 315px;
    z-index: 2;
}
#home_banner_text{
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}
/*welcome*/
#welcome_container{
    max-width: 640px;
    margin: 0 auto;
}
#welcome_title{
    text-align: center;
    color: #053F57;
}
/*multi section*/
#home_multi_cards{
    margin: 0 -8px 72px;
}
#home_multi_cards .multi_field{
    position: relative;
    width: 368px;
    cursor: pointer;
    margin: 8px;
}
.card_container{
    position: relative;
    height: 240px;
    display: flex;
    flex-flow: column;
    justify-content: center;
}
#home_multi_cards .multi_field .multiField_0{
    height: 240px;
}
#home_multi_cards .multi_field .multiField_1,
#home_multi_cards .multi_field .multiField_2{
    font-family: "Quentin";
    font-size: 54px;
    line-height: 64px;
}
#home_multi_cards .multi_field .multiField_1{
    position: absolute;
    padding: 0 24px;
}
.blue_card_container{
    width: 100%;
    max-width: 368px;
    padding: 32px 24px 24px;
    flex-flow: column;
    justify-content: space-between;
}
#overdiv.no_admin .blue_card_container{
    position: absolute;
    top: 0;
    left: 0;
    height: 240px;
    display: none;
}
#home_multi_cards .multi_field .multiField_4{
    text-transform: uppercase;
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
}
#home_multi_cards .multi_field .multiField_4::after{
    content: "";
    background: url("images/white_arrow_right.svg") no-repeat 50% 50%;
    width: 16px;
    height: 20px;
    margin-left: 8px;
}
/*blue section*/
#home_product_details{
    margin: 48px 0 48px 26px;
    flex-flow: column;
    justify-content: space-between;
}
#home_product_img{
    max-width: 438px;
    width: 100%;
}
#home_product_text{
    margin: 8px 0 32px;
}
/*bio section*/
#home_bio_container{
    padding: 88px 0;
}
#home_bio_img{
    max-width: 424px;
    width: 100%;
}
#home_bio_details{
    max-width: 640px;
    width: 100%;
    margin-left: 72px;
    flex-flow: column;
    justify-content: space-between;
}
#home_bio_title{
    color: #053F57;
}
#home_bio_text{
    margin: 16px 0 30px;
}
/*testimonial section*/
#home_testimonials .slider{
    max-width: 766px;
    padding: 0 102px;
    margin: 32px auto 0;
    display: flex;
    align-items: center;
}
#home_testimonials .review-box{
    margin: 2px 4px;
}


/*MY BOOKS - LATEST BOOKS
========================================================================== */
#latest_books_container{
    padding: 88px 0 72px 0;
}
#latest_books_title,
#home_testimonial_title{
    text-align: center;
    color: #053F57;
}
#latest_books,
#books_multi_container{
    justify-content: center;
}
#books_multi_container{
    padding: 88px 0 128px;
}
#latest_books .multi_field{
    display: flex;
    justify-content: center;
}
#latest_books .multi_field .multiField_0,
#books_multi_container .multi_field{
    width: 192px;
    height: 296px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.25);
    margin: 32px;
    overflow: hidden;
}
#latest_books .multi_field .multiField_0{
    margin-top: 0;
}
#books_multi_container .multi_field .multiField_0{
    height: 100%;
}

/*STANDARD
========================================================================== */
#standard_banner_container{
    position: relative;
    margin-bottom: 80px;
}
#standard_banner_img{
    width: 54%;
    height: 520px;
}
#standard_description{
    padding: 32px 48px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 696px;
    min-height: 216px;
    border-bottom: 4px solid #FD7462;;
    transform: translate(-18%, -50%);
}
#standard_multi_container .overdiv {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
#standard_multi_container .multi_field{
    margin-bottom: 64px;
}
#standard_multi_container .multi_field:last-child{
    margin-bottom: 0;
}
#standard_multi_container .multi_field .multiField_0{
    font-family: "Quentin";
    font-size: 54px;
    line-height: 80px;
    width: 39%;
    max-width: 432px;
    margin-right: 56px;
    color: #053F57;
}
#standard_multi_container .multi_field .multiField_1{
    width: 53%;
}
#standard_multi_container .multi_field .multiField_2{
    width: 100%;
    margin-top: 64px;
    display: flex;
    justify-content: center;
}
#overdiv.no_admin #standard_multi_container .multi_field .multiField_2{
    height: 376px;
}
#overdiv.no_admin #standard_show,
#standard_latest_books #latest_books_container{
    display: none;
    margin-top: 80px;
}

/*POINTS
========================================================================== */
#points_multi_container{
    max-width: 640px;
    margin: 104px auto 112px;
}
#points_multi_container .multi_field{
    margin-top: 56px;
}
#points_multi_container .multi_field .multiField_0{
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: normal;
    color: #053F57;
    margin-bottom: 24px;
}

/*TIMELINE
========================================================================== */
#timeline_multi_container{
    margin: 76px auto;
    max-width: 1182px;
}
#overdiv.no_admin #timeline_multi_container .multi_field{
    /*background: url("images/frame.png") no-repeat 50% 50%;*/
    /*background-size: cover;*/
    background-color: #E5E5E5;
    box-shadow: 1px 2px 3px 2px rgba(0, 0, 0, 0.30);
    min-height: 400px;
}
#timeline_multi_container .flex{
    width: 100%;
    justify-content: flex-start;
}
#timeline_multi_container .flex:nth-child(even){
    flex-direction: row-reverse;
}
#timeline_multi_container .multi_field{
    width: 330px;
    margin: 21px 32px;
    padding: 20px;
    position: relative;
}
#timeline_multi_container .multi_field .multiField_0{
    height: 285px;
    width: 276px;
    margin: 8px;
}
#timeline_multi_container .multi_field .multiField_1{
    font-family: "Quentin";
    font-size: 26px;
    line-height: 34px;
    color: #222222;
    margin-top: 20px;
}
#timeline_multi_container .flex:nth-child(odd) .multi_field:nth-child(1)::after,
#timeline_multi_container .flex:nth-child(odd) .multi_field:nth-child(2)::after{
    content: "";
    width: 65px;
    height: 40px;
    position: absolute;
    top: 50%;
    right: -64px;
    transform: translateY(-50%);
    background: url("images/timeline_arrow_right.svg") no-repeat, 50% 50%;
}
#timeline_multi_container .flex:nth-child(even) .multi_field:nth-child(1)::before{
    content: "";
    background: url("images/timeline_arrow_right_down.svg") no-repeat, 50% 50%;
    height: 70px;
    width: 40px;
    position: absolute;
    top: -15%;
    left: 50%;
}
#timeline_multi_container .flex:nth-child(even) .multi_field:nth-child(2)::after,
#timeline_multi_container .flex:nth-child(even) .multi_field:nth-child(3)::after{
    content: "";
    width: 65px;
    height: 40px;
    position: absolute;
    top: 50%;
    right: -64px;
    transform: translateY(-50%);
    background: url("images/timeline_arrow_left.svg") no-repeat, 50% 50%;
}
#timeline_multi_container .flex:nth-child(odd) .multi_field:nth-child(1)::before{
    content: "";
    background: url("images/timeline_arrow_left_down.svg") no-repeat, 50% 50%;
    height: 70px;
    width: 40px;
    position: absolute;
    top: -15%;
    left: 50%;
}
#timeline_multi_container .flex:nth-child(odd) .multi_field:nth-child(1){
    transform: rotate(-5deg);
}
#timeline_multi_container .flex:nth-child(odd) .multi_field:nth-child(2){
    transform: rotate(-1deg);
}
#timeline_multi_container .flex:nth-child(odd) .multi_field:nth-child(3){
    transform: rotate(2deg);
}
#timeline_multi_container .flex:nth-child(even) .multi_field:nth-child(3){
    transform: rotate(-2deg);
}
#timeline_multi_container .flex:nth-child(even) .multi_field:nth-child(2){
    transform: rotate(1deg);
}
#timeline_multi_container .flex:nth-child(even) .multi_field:nth-child(1){
    transform: rotate(5deg);
}
#timeline_multi_container .flex:nth-child(1) .multi_field:nth-child(1)::before,
#timeline_multi_container .flex:last-child .multi_field:last-child::after{
    content: none;
}

/*CONTACT
========================================================================== */
#contact_container,
#contact_form_privacy{
    display: flex;
}
#contact_container{
    padding: 96px 0 114px;
}
#contact_form_container{
    width: 42%;
    max-width: 472px;
}
#contact_first_name,
#contact_last_name{
    width: 49%;
}
#contact_telephone,
#contact_email{
    width: 100%;
}
#contact_right{
    width: 48%;
    max-width: 544px;
    margin-left: 120px;
    margin-top: 15px;
}
#contact_form_privacy_txt{
    max-width: 311px;
    font-size: 14px;
    line-height: 21px;
}
#contact_options{
    margin-top: 16px;
    max-width: 400px;
}
#overdiv #contact_recaptcha_btn{
    min-width: 128px;
    height: 48px;
    background-color: #053F57;
    color: #FFFFFF;
}
.invalid{
    border-color: #FD7462 !important;
}
.invalid::-webkit-input-placeholder {
  	color: #FD7462 !important;
	opacity:1;
}
.invalid:-ms-input-placeholder {
	color: #FD7462 !important;
	opacity:1;
}
.invalid::placeholder {
  	color: #FD7462 !important;
	opacity:1;
}
#contact_mail,
#contact_address{
    position: relative;
    padding-left: 30px;
}
#contact_mail::before{
    content: "";
    position: absolute;
    background: url("images/email.svg") no-repeat 50% 50%;
    width: 20px;
    height: 24px;
    left: 0;
}
#contact_address::before{
    content: "";
    position: absolute;
    background: url("images/pin.svg") no-repeat 50% 50%;
    width: 20px;
    height: 24px;
    left: 0;
}
/*custom checkbox*/
.container{
    display: block;
    position: relative;
    padding-left: 24px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.container input{
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    z-index: 1;
    cursor: pointer;
}
.checkmark{
    position: absolute;
    top: 3px;
    left: 0;
    height: 16px;
    width: 16px;
    border: 1px solid #053F57;
    box-sizing: border-box;
    border-radius: 2.5px;
}
.checkmark:after{
    content: "";
    position: absolute;
    display: none;
}
.container input:checked ~ .checkmark:after{
    display: block;
    left: 4px;
    top: 0px;
    width: 4px;
    height: 10px;
    border: solid #053F57;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*EVENT
========================================================================== */
#events_banner_container{
    position: relative;
    margin-bottom: 64px;
}
#events_filters{
    max-width: 206px;
}
#sort_selector,
.filter_title{
    font-family: proxima-nova, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.filter_title{
    width: 206px;
    border: 1px solid #053F57;
    box-shadow: 2px 2px 0px #FD7462;
    border-radius: 5px;
    padding: 8px 10px;
    position: relative;
    cursor: pointer;
}
.custom_select select{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	background: url("images/arrow_down_blue.svg") no-repeat 95% 50%;
}
.custom_select.clicked select{
    background: url("images/arrow_up.svg") no-repeat 95% 50%;
    background-size: 12px;
    background-color: #053F57;
    color: #FFFFFF;
}
.custom_select select option{
    font-family: proxima-nova, sans-serif;
    font-weight: normal;
    font-size: 14px;
    line-height: 21px;
}
.filter_title::after{
    position: absolute;
    content: "";
    right: 10px;
    width: 12px;
    height: 24px;
    background: url("images/arrow_down_blue.svg") no-repeat 50% 50%;
    background-size: contain;
}
.filter_title.blue_background::after{
    background: url("images/arrow_up.svg") no-repeat 50% 50%;
    background-size: contain;
}
.filter_container{
    display: none;
    font-weight: normal;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    border: 1px solid #053F57;
    border-top: none;
    box-shadow: 2px 2px 0px #FD7462;
    border-radius: 0 0 5px 5px;
}
.filter_category_title,
.subcategory_name{
    margin: 8px 4px;
}
#filter_month,
#filter_time,
#filter_category{
    padding: 8px;
}
#filter_month,
#filter_time{
    border-bottom: 1px solid #053F57;
}
#filter_month .subcategory_name{
    width: 30px;
}
.hide{
    display: none;
}
#events_container{
    margin-bottom: 112px;
}
#events_block_section{
    width: 100%;
    max-width: 832px;
    margin-left: 98px;
}
.event_block_full_container{
    width: 392px;
    margin-top: 48px;
    position: relative;
}
.event_image_block{
    height: 232px;
    border-bottom: 4px solid #FD7462;
}
.event_format{
    position: absolute;
    top: 0;
    left: 0;
    width: 192px;
    background-color: #89D2DB;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    text-align: center;
    color: #053F57;
    padding: 2px 8px;
    border-radius: 0 0 5px 0;
}
.event_details{
    margin: 8px 20px 0;
    font-weight: normal;
}
.event_details_title{
    font-size: 20px;
    line-height: 30px;
    color: #053F57;
}
.event_details_info{
    margin-top: 8px;
}
.event_details_info > div{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.icon_left{
    width: 20px;
    height: 24px;
    display: inline-block;
    background-size: 20px;
    margin-right: 10px;
}
.location{
    background: url("images/pin_lightblue.svg") no-repeat 50% 50%;
}
.calendar{
    background: url("images/calendar_lightblue.svg") no-repeat 50% 50%;
}
.clock{
    background: url("images/clock_lightblue.svg") no-repeat 50% 50%;
}
/*FILTER EVENTS MOBILE*/
.sort,
.filter{
    display: none;
}
#mobile_filter_container{
    display: none;
    width: 100%;
    position: relative;
    background-color: #053F57;
    margin-top: 25px;
}
#mobile_select_container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 15px 20px;
}
#mobile_select_container .filter_title{
    width: 200px;
    background-color: #FFFFFF;
}
#mobile_filter{
    margin-left: 11px;
}
.sort_option{
	font-size: 16px;
	line-height: 24px;
	padding: 10px 20px;
    border: 1px solid #B8B8B8;
	text-align: center;
    color: #979797
}
.sort_option.ticked{
	background: url("images/checked.svg") no-repeat 83% 50%;
    background-size: 17px;
    color: #053F57;
}
.mobile_sort_title{
    text-align: center;
    width: 33.3%;
}
#filter_section .filter_container{
    border: 1px solid #B8B8B8;
    box-shadow: none;
}
#filter_section #filter_month,
#filter_section #filter_time,
#filter_section #filter_category{
    text-align: center;
    border-bottom: 1px solid #B8B8B8;
    padding-top: 15px;
    margin: 0;
}
#filter_section .category_subs input,
#filter_section .category_subs span{
    display: none;
}
#filter_section .category_subs{
    padding-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: #979797;
}
#filter_section .subcategory_name{
    min-width: 83px;
    min-height: 30px;
    border: 1px solid #B8B8B8;
    border-radius: 5px;
    margin: 5px 7.5px;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#filter_section .sky_background{
    color: #053F57;
}
.filter, .sort{
    display: none;
    position: absolute;
    top: 0;
    width: 100%;
    font-weight: 500;
    z-index: 2;
}
.filter .blue_background, .sort .blue_background{
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: #FFFFFF;
    padding: 23px;
}
.filter.show, .sort.show {
    display: block;
}
#clear_all,
.done{
    color: #89D2DB;
}

/*SHOP OVERVIEW
========================================================================== */
.shop-overview {
	font-weight: 400;
	padding-top: 80px;
	padding-bottom: 32px;
}
.shop-overview .button,
.shop-overview button {
	min-height: 38px;
}
.shop-overview img {
	max-width: 100%;
}
.category-title,
.product-title {
	font-size: 18px;
	line-height: 27px;
}
.category-title,
.img-button,
.product-title,
.product-author {
	text-transform: uppercase;
}
.basket-language {
	text-transform: none;
}
.category-title {
	color: #053F57;
	letter-spacing: 0.05em;
	margin-bottom: 48px;
}
.products-container {
	display: flex;
	flex-wrap: wrap;
	margin-left: -3.5%;
	margin-right: -3.5%;
}
.product {
	width: 18%;
	margin: 0 3.5% 7%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.product-img-container,
.product-img {
	position: relative;
	cursor: pointer;
}
.product-img-container {
	box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.25);
}
.product-img {
	padding-top: 158.33%;
}
.product-img img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: 50% 50%;
}
.img-button,
.product-author,
.product-types {
	font-size: 14px;
	line-height: 21px;
}
.img-button {
	width: 60%;
	color: #ffffff;
	text-align: center;
	display: inline-block;
	padding: 6px 8px;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 2;
}
.addto-basket,
#overdiv .addto-basket {
	min-width: 150px;
	letter-spacing: 0.05em;
}
.product.preorder .img-button,
.product-details-container.preorder .img-button {
	background: #053F57;
}
.product.out-stock .img-button,
.product-details-container.out-stock .img-button {
	background: #000000;
}
.product .product-details {
	flex-grow: 1;
}
.product-details-overview {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}
.product-title,
.product-price {
	color: #222222;
}
.product .product-title {
	margin-top: 24px;
}
.product-author,
.product .product-price,
.product-types {
	margin-top: 8px;
}
.product-author {
	color: #FD7462;
}
.product-price {
	font-weight: 500;
}
/* Out of stock */
.product.out-stock {
	cursor: default;
}
.product.out-stock .product-img {
	opacity: 0.5;
}
.product.out-stock .product-title,
.product.out-stock .product-author,
.product.out-stock .product-price,
.product.out-stock .product-types {
	opacity: 0.75;
}

/*BASKET POPUP
========================================================================== */
.basket-popup {
	width: 320px;
	font-weight: 400;
	background: #ffffff;
	box-shadow: -2px 2px 0px rgba(184, 184, 184, 0.5);
	position: absolute;
	top: calc(100% + 4px);
	right: 0;
	z-index: 100;
	display: none;
}
.quantity-box button,
#overdiv .quantity-box button {
	display: block;
	min-width: 8px;
	background-color: transparent;
	border: none;
	box-shadow: none;
	border-radius: 0;
	padding: 9px 5px;
}
.basket-popup img {
	max-width: 100%;
	display: block;
}
.basket-popup .basket-top {
	display: flex;
	padding: 12px 16px 24px;
}
.basket-img {
	margin-right: 24px;
	flex-shrink: 0;
}
.basket-popup .basket-img {
	width: 72px;
}
.basket-popup-details {
	flex-grow: 1;
}
.basket-popup-details .basket-title,
.basket-popup-details .basket-language {
	font-size: 16px;
	line-height: 24px;
	color: #222222;
}
.basket-popup-details .basket-title {
	margin-top: 0;
	text-transform: uppercase;
}
.basket-popup-details .basket-language {
	display: block;
}
.basket-popup-bottom {
	margin-top: 10px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.basket-popup .product-price,
.product-type {
	font-size: 14px;
	line-height: 21px;
	font-weight: 400;
}
.basket-popup .product-price {
	color: #454545;
}
.basket-popup .product-type {
	color: #222222;
	margin-top: 2px;
}
.quantity-box {
	display: flex;
}
.quantity-box .item-quantity {
	width: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	line-height: 24px;
	color: #053F57;
	letter-spacing: 0.05em;
	padding: 8px;
	border: 1px solid #053F57;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.25);
}
#overdiv .quantity-box .item-quantity input{
    border:0;
	width:100%;
	padding: 0;
	box-shadow: none;
	border-radius: 0;
    text-align: center;
}
.quantity-box .item-quantity input::-webkit-outer-spin-button,
.quantity-box .item-quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.quantity-box .item-quantity input[type=number]{
	-moz-appearance: textfield;
}
.basket-item .item-quantity-container {
	align-items: flex-end;
}
.basket-item .quantity-box {
	justify-content: flex-end;
}
.quantity-arrows {
	display: flex;
	flex-direction: column;
	background: #053F57;
}
.quantity-arrows > button {
	flex-grow: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.quantity-arrows img {
	display: block;
}
.basket-middle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px;
	border-top: 1px solid #B8B8B8;
	border-bottom: 1px solid #B8B8B8;
}
.item-quantity {
	color: #222222;
}
.basket-middle .item-quantity {
	font-size: 14px;
	line-height: 21px;
}
.subtotal {
	font-size: 16px;
	line-height: 24px;
}
.basket-middle .subtotal {
	font-weight: 500;
	color: #053F57;
}
.basket-bottom {
	padding: 24px 16px 16px;
}
#overdiv .basket-bottom button {
	width: 100%;
	min-height: 38px;
	display: block;
	letter-spacing: 0.05em;
}
.basket-bottom button + button {
	margin-top: 10px;
}

/*SHOP PRODUCT
========================================================================== */
.shop-product-container {
	padding-top: 70px;
}
.shop-product-container img {
	max-width: 100%;
}
.shop-product-container .button,
.shop-product-container button:not(.quantity-up):not(.quantity-down) {
	min-height: 48px;
}
.product-details-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 80px;
}
.product-details-container .product-img-container {
	width: 272px;
	position: relative;
	flex-shrink: 0;
	margin-right: 56px;
}
.product-details-container .product-img-container .img-button,
.product-details-container .award-corner {
	display: none;
}
.product-details-container.preorder .product-img-container .img-button {
	width: 45%;
	top: -33px;
	bottom: auto;
}
.product-details-container.awarded .award-corner img {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 3;
	display: block;
}
.product-details-container.preorder .product-img-container .img-button,
.product-details-container.awarded .award-corner {
	display: block;
}
.product-details-container .product-details {
	display: flex;
	justify-content: space-between;
	flex-grow:2;
}
.product-details-container .product-details .product_details_left{
	flex-grow:2;
}
.product-details-container .product-details .product_details_right{
}
.product-details-container .product-details > div:first-child {
	margin-right: 38px;
}
.product-details-container .product-title {
	font-size: 20px;
	line-height: 30px;
	font-weight: 400;
	color: #FD7462;
	letter-spacing: 0.05em;
	margin-bottom: 16px;
}
.uppercase {
	text-transform: uppercase;
}
.not-uppercase {
	text-transform: none !important;
}
.product-desc,
.award-section,
.type-container {
	border-top: 1px solid rgba(69, 69, 69, 0.25);
}
.award-section,
.type-container {
	letter-spacing: 0.05em;
}
.product-desc {
	padding-top: 24px;
	padding-bottom: 24px;
}
.product-preorder {
	margin-bottom: 16px;
}
.award-section {
	font-weight: 500;
	color: #FD7462;
	display: flex;
	padding-top: 16px;
	padding-bottom: 16px;
}
.award-section .award-icon {
	margin-right: 8px;
	flex-shrink: 0;
}
.award-section img {
	display: block;
}
.award-section .award-title {
	margin-bottom: 4px;
}
.award-section .award-desc,
.type-container {
	font-size: 14px;
	line-height: 21px;
}
.type-container {
	color: #053F57;
	padding-top: 8px;
}
.product-details-container .product-details > div:nth-child(2) {
	flex-shrink: 0;
}
.product-availability {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.product-details-container .product-price {
	color: #454545;
}
.product-details-container .availability {
	font-size: 14px;
	line-height: 21px;
	color: #053F57;
	letter-spacing: 0.05em;
}
.product-quantity {
	display: flex;
	margin-top: 16px;
}
.product-quantity .quantity-box {
	margin-right: 8px;
}
.read-excerpt-available-at {
	margin-top: 18px;
}
.available-at {
	margin-top: 16px;
}
.available-at img {
	display: block;
}
.vertical-padding {
	padding: 80px 20px;
}
.product-reviews {
	background: #F6F6F6;
}
.product-reviews > div {
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}
.product-reviews button {
	margin-top: 32px;
}
#overdiv #see_less_reviews,
#overdiv #see_more_reviews{
    display: none;
}
.center {
	text-align: center;
}
.section-title {
	font-size: 18px;
	line-height: 27px;
	font-weight: 400;
	color: #053F57;
	letter-spacing: 0.05em;
	margin-bottom: 24px;
	text-align: center;
	text-transform: uppercase;
}
.color-white {
	color: #ffffff;
}
.review-box {
	padding: 40px 16px 16px;
	background-color: #ffffff;
	background-image: url("images/quote.svg");
	background-repeat: no-repeat;
	background-position: 16px 16px;
	border-radius: 5px;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}
.review-box .multiField_1,
.review-box .multiField_2,
.review-name,
.review-meta {
	color: #053F57;
}
.review-box .multiField_1,
.review-name {
	font-weight: 400;
	margin-top: 16px;
}
.review-box .multiField_2,
.review-meta {
	font-size: 14px;
	line-height: 21px;
}
.review-box + .review-box {
	margin-top: 16px;
}
.product-excerpt .section-title {
	margin-bottom: 40px;
}
.excerpt-container {
	max-width: 864px;
	margin-left: auto;
	margin-right: auto;
}
.excerpt-box {
	color: #393939;
	padding: 32px;
	margin-left: 10px;
	margin-right: 10px;
	background-color: #ffffff;
	box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.25);
}
.excerpt-box .multiField_0,
.excerpt-title {
	font-weight: 500;
	margin-bottom: 8px;
}
.excerpt-box .multiField_1,
.excerpt-text {
	font-size: 14px;
	line-height: 21px;
}
.related-products {
	padding: 80px 0;
	background: #053F57;
}
.related-products img {
	max-width: 100%;
}
.related-products > div {
	margin-left: auto;
	margin-right: auto;
}
.related-products .section-title {
	margin-bottom: 40px;
}
.related-products img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.related-product {
	margin-left: 12.5px;
	margin-right: 12.5px;
}

/*SLIDER
========================================================================== */
.excerpt-container .slider {
	padding-left: 72px;
	padding-right: 72px;
}
.excerpt-container .slider .slick-track {
	padding-top: 10px;
	padding-bottom: 10px;
}
#overdiv .slider .slick-arrow {
	width: 48px;
	height: 48px;
	min-width: 48px;
	font-size: 0;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
}
.slider .slick-prev {
	left: 0;
	background-image: url("images/arrow_left.svg");
}
.slider .slick-next {
	right: 0;
	background-image: url("images/arrow_right.svg");
}
#overdiv .slider .slick-prev:hover {
	background-image: url("images/arrow_left_white.svg");
}
#overdiv .slider .slick-next:hover {
	background-image: url("images/arrow_right_white.svg");
}
#overdiv .slider .slick-disabled {
	display: none !important;
}
#overdiv .slider .slick-dots {
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 11px;
}
#overdiv .slider .slick-dots button {
	width: 10px;
	height: 10px;
	min-width: 10px;
	min-height: 10px;
	font-size: 0;
	padding: 0;
	margin: 0 5px;
	border: 0;
	box-shadow: none;
	background: #ffffff;
	border-radius: 100%;
	opacity: 0.35;
}
#overdiv .slider .slick-dots .slick-active button {
	opacity: 1;
}
#overdiv .review-box-container.slider .slick-dots button {
	background: #C1C1C1;
}
#overdiv .review-box-container.slider .slick-dots .slick-active button {
	background: #053F57;
}
#latest_books .slider{
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
}
#latest_books .slider .slick-dots button{
    background-color: #053F57;
}

/*SHOP BASKET
========================================================================== */
.shop-basket {
	padding: 32px 0 112px;
}
.shop-basket img {
	max-width: 100%;
	display: block;
}
.basket-container {
	padding-top: 50px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.basket-content {
	flex-grow: 1;
	margin-right: 72px;
}
.basket-item {
	/* display: flex;
	justify-content: space-between; */
	padding-bottom: 24px;
	border-bottom: 1px solid #B8B8B8;
}
.basket-item + .basket-item {
	margin-top: 32px;
}
.item-details {
	display: flex;
}
.item-details .basket-item-top {
	display: flex;
	justify-content: space-between;
	flex-grow: 1;
}
.item-details .basket-item-top > div:first-child {
	margin-right: 24px;
}
/* .item-details > div:nth-child(2) {
	margin-right: 24px;
} */
.basket-item .basket-img {
	width: 112px;
}
.basket-item .product-title {
	font-weight: 400;
}
.basket-item .product-type {
	color: #454545;
}
.basket-item .product-price {
	font-weight: 500;
	margin-top: 16px;
}
.item-quantity-container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.item-quantity-container .product-price {
	color: #053F57;
	margin-top: 0;
}
.item-quantity-container .quantity-box {
	margin-top: 48px;
}
.quantity-with-remove .remove-item {
	margin-top: 10px;
}
#overdiv .remove-item {
	font-size: 14px;
	line-height: 21px;
	font-weight: 300;
	min-width: 60px;
	border: 0;
	box-shadow: none;
	border-radius: 0;
	padding: 0;
	text-transform: none;
	text-decoration: underline;
}
#overdiv .remove-item,
#overdiv .remove-item:hover,
#overdiv.no_admin .remove-item:hover {
	color: #053F57;
	background-color: transparent;
}
.basket-content .go-checkout {
	margin-top: 24px;
}
.order-sidebar {
	width: 320px;
	font-weight: 400;
	color: #222222;
	flex-shrink: 0;
	position:sticky;
	top:20px;
}
.order-sidebar > div {
	background: #ffffff;
	border: 1px solid #B8B8B8;
	box-shadow: -2px 2px 0px rgba(184, 184, 184, 0.5);
}
.order-sidebar > div + div {
	margin-top: 32px;
}
.order-sidebar > div > div {
	padding: 15px;
}
.order-heading {
	font-weight: 500;
	color: #053F57;
	background: #F6F6F6;
}
.order-sidebar > div:first-child .item-total-box {
	padding: 16px 16px 24px;
}
.subtotal-box,
.vat-box,
.delivery-box,
.total-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #B8B8B8;
}
.subtotal-box > div:first-child,
.vat-box > div:first-child,
.delivery-box > div:first-child {
	font-size: 14px;
	line-height: 21px;
}
.order-sidebar .subtotal,
.vat-box .vat {
	color: #454545;
}
.total-box {
	font-weight: 500;
	color: #ffffff;
	background: #053F57;
}
.shipping-costs-box {
	max-width: 496px;
	padding: 24px;
	margin-top: 48px;
	background: #F6F6F6;
	border: 1px solid #B8B8B8;
}
.cost-title {
	font-weight: 500;
	color: #053F57;
	margin-bottom: 16px;
}
.cost {
	display: flex;
	justify-content: space-between;
}
.cost + .cost {
	margin-top: 8px;
}
.shipping-days {
	margin-right: 24px;
}
.mobile-divider {
	display: none;
}

/*SHOP CHECKOUT
========================================================================== */
.shop-checkout {
	padding: 40px 0 112px;
}
.shop-checkout img {
	max-width: 100%;
	display: block;
}
.checkout-steps {
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}
.checkout-steps > div {
	display: flex;
	justify-content: center;
	margin-left: -1%;
	margin-right: -1%;
}
.checkout-step {
	width: 31.333%;
	font-size: 14px;
	line-height: 21px;
	font-weight: 400;
	color: #ADADAD;
	margin-left: 1%;
	margin-right: 1%;
	text-align: center;
}
.checkout-step::after {
	content: "";
	display: block;
	width: 100%;
	height: 8px;
	margin-top: 8px;
	background: #D8D8D8;
}
.checkout-step.selected {
	color: #053F57;
}
.checkout-step.selected::after {
	background: #89D2DB;
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
}
.checkout-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-top: 68px;
}
.checkout-container:not(.summary) .checkbox-container {
	color: #053F57;
}
.checkout-content {
	margin-right: 90px;
	flex-grow: 1;
}
.checkout-section {
	padding-bottom: 34px;
	border-bottom: 1px solid #C6C6C6;
}
.checkout-section + .checkout-section {
	padding-top: 40px;
}
.checkout-container .section-title {
	margin-bottom: 0;
	text-align: left;
}
.details-section {
	display: flex;
	justify-content: space-between;
}
.details-section + .details-section {
	margin-top: 16px;
}
.details-section + .details-section {
	margin-top: 16px;
}
.details-section .section-title,
.dedication-container > div:first-child {
	margin-right: 45px;
}
.details-section .section-title {
	flex-shrink: 0;
}
.details-fields,
.shop-checkout input,
.shop-checkout textarea,
.shop-checkout select {
	width: 100%;
	max-width: 485px;
}
#overdiv .shop-checkout input,
#overdiv .shop-checkout textarea {
    padding: 8px 16px;
}
.shop-checkout input,
.shop-checkout textarea,
.shop-checkout select {
	margin-bottom: 16px;
    color: #454545;
}
.input-container {
	display: flex;
}
#overdiv .input-container > input,
#overdiv .find-address > input,
#overdiv .find-address > button {
	width: 49%;
}
.input-container > input:first-child,
.find-address > input:first-child {
	margin-right: 8px;
}
.shop-checkout input {
	width: 100%;
}
.find-address {
	display: flex;
	align-items: flex-start;
}
.dedication-container {
	margin-top: 24px;
	padding: 10px 18px 7px 10px;
	background: #F6F6F6;
}
.dedication-container + .dedication-container {
	margin-top: 8px;
}
.dedication-container .details-fields {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.dedication-container input {
	margin-bottom: 11px;
}
.dedication-container .basket-img {
	width: 72px;
	margin-right: 0;
	margin-bottom: 8px;
	flex-shrink: unset;
}
.dedication-container .product-title {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
}
.dedication-container .basket-language {
	display: block;
}
.next-step {
	margin-top: 32px;
}

/*SHOP CHECKOUT SUMMARY
========================================================================== */
.shop-checkout a {
	color: #053F57;
	text-decoration: underline;
}
.checkout-container.summary .details-section + .details-section {
	margin-top: 40px;
}
.summary-box {
	display: flex;
	justify-content: space-between;
}
.summary-box > div:first-child {
	margin-right: 24px;
}
.summary-title {
	color: #5C5C5C;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.user-detail {
	color: #000000;
	font-style: unset;
}
.user-detail + .user-detail {
	margin-top: 8px;
}
.user-addresses {
	display: flex;
	justify-content: space-between;
}
.user-addresses > div:first-child {
	margin-right: 56px;
}
.checkout-section.darker,
.checkout-section.darker .summary-title,
.checkout-section.darker .user-detail {
	color: #222222;
}
.notes {
	font-size: 14px;
	line-height: 21px;
}
.notes-title {
	margin-bottom: 8px;
}
.agree-terms-section {
	padding: 40px 0 24px;
}
.agree-terms-section .checkbox-container {
	margin-bottom: 0;
}
.summary-dedications .details-fields + .details-fields {
	margin-top: 24px;
}

/*SHOP THANK YOU
========================================================================== */
.order-summary {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.order-summary > div:first-child {
	margin-right: 24px;
}
.order-summary .section-title {
	margin-bottom: 40px;
}
.order-details-top > div {
	display: flex;
	justify-content: space-between;
}
.order-details-top > div + div {
	margin-top: 8px;
}
.order-details-top > div > div:first-child {
	color: #5C5C5C;
	text-transform: uppercase;
	margin-right: 64px;
}
.order-details-top > div > div:nth-child(2) {
	color: #000000;
}
.order-detail-container {
	max-width: 610px;
	padding-top: 40px;
}
.order-text {
	margin-bottom: 40px;
}
.order-details {
	display: flex;
	flex-wrap: wrap;
	margin-left: -4.5%;
	margin-right: -4.5%;
}
.order-details .order-detail {
	width: 24.333%;
	margin: 0 4.5% 6%;
}
.payed-order {
	display: flex;
	align-items: flex-start;
}
.payed-order .basket-img {
	width: 72px;
}
.payed-order .product-title {
	font-size: 16px;
	line-height: 24px;
}
.payed-order .product-title .basket-language {
	display: block;
}
.payed-order .product-price,
.payed-order .product-type {
	font-size: 14px;
	line-height: 21px;
	font-weight: 400;
	margin-top: 16px;
}
.payed-order .product-price {
	color: #454545;
}
.payed-order .product-type {
	color: #222222;
}