@import url('https://fonts.googleapis.com/css2?family=Exo&display=swap');

*:focus{ outline:none; }

:root{
	--e-global-color-primary: #EF8300;
    --e-global-color-secondary: #2644a9;
}



body {
	font-family: Exo;
	display: flex;
	max-width: 1140px;
	margin: auto;
	min-height: 400px;
	/*max-height: 500px;*/
	align-content: center;
}


.selection_tool_template{
	display: none;
}

.selection_tool {
	display: flex;
	width: 100%;
	/*max-height: 500px;*/
	flex-wrap: wrap;
	position: relative;
	/*background-image:url(background.jpg);*/
	background-size: cover;
	/*box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);*/
}

.selection_tool_steps {
	flex: 1 0 34%;
	padding: 15px;
	border-bottom: 2px solid var(--e-global-color-primary);
}

.selection_tool_steps h3.step_title {
	margin: 10px 0;
    color: var(--e-global-color-secondary);
}
.selection_tool_steps .step_2 h3.step_title {
	flex: 1 0 51%;
}

.selection_tool .step_1 {
	flex: 1 0 55%!important;
	border-right: 2px solid var(--e-global-color-primary);
	display: flex;
	align-items: center;
	position: relative;
	flex-direction: column;
}

@media (max-width: 1024px){
	.selection_tool .step_1 {
		border-right: none;
	}
}


.selection_tool .step_2 {
	flex: 1 0 25%!important;
	display: flex;
	justify-content: space-evenly;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
}

.selection_tool .step_3,
.selection_tool .step_4 {
	text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.selection_tool .step_3 .selected,
.selection_tool .step_4 .selected {
	max-height: 60px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px 0 0;
    border-radius: 8px;
    background: var(--e-global-color-secondary);
    width: 300px;
    cursor: pointer;
    transition: 250ms;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.selection_tool .step_3 .selected:hover,
.selection_tool .step_4 .selected:hover {
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	background: #0465bd;
}
.selection_tool .step_3 .selected img,
.selection_tool .step_4 .selected img{
	height: 50px;
    width: 80px;
    object-fit: cover;
}
.selection_tool .step_3 .selected p,
.selection_tool .step_4 .selected p{
	color: white;
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    width: 220px;
}


.selection_tool .step_3 .industry_selector_wrapper,
.selection_tool .step_4 .country_selector_wrapper {
	opacity: 0;
	visibility: hidden;
	transition: 300ms;
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}
.selection_tool .step_3 .industry_selector_wrapper.open,
.selection_tool .step_4 .country_selector_wrapper.open {
	opacity: 1;
	visibility: visible;
}

.selection_tool .step_3 .industry_selector,
.selection_tool .step_4 .country_selector {
	background: white;
    width: 85%;
    height: 75%;
    padding: 10px;
    border-radius: 8px;
    position: relative;
    transform: scale(0.1);
    transition: 300ms;
    z-index: 999;
}
.selection_tool .step_3 .industry_selector_wrapper.open .industry_selector,
.selection_tool .step_4 .country_selector_wrapper.open .country_selector {
	transform: scale(1);
}
.selection_tool .step_3 .industry_selector .close_industry_selector i,
.selection_tool .step_4 .country_selector .close_country_selector i {
	position: absolute;
    background: var(--e-global-color-primary);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    width: 20px;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.selection_tool .step_3 .industry_selector_wrapper p.title,
.selection_tool .step_4 .country_selector_wrapper p.title{
	position: absolute;
    width: 70%;
    top: 0;
    left: 15%;
    font-size: 20px;
    font-weight: bold;
    color: var(--e-global-color-secondary);
}
.selection_tool .step_3 .industry_selector ul{
	margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: 100%;
}
.selection_tool .step_3 .industry_selector ul li {
	list-style-type: none;
    flex: 1 0 21%;
    /*height: calc(75% - 10px);*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding-top: 10px;
    margin-top: 20px;
}
@media (max-width: 1024px){
	.selection_tool .step_3 .industry_selector ul li {
		flex: 1 0 34%;
	}
}
.selection_tool .step_3 .industry_selector ul li .active_indicator{
	opacity: 0;
	visibility: hidden;
}
@keyframes select-grow {
  0% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.5) rotate(-8deg); }
  50% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1) rotate(0deg); }
}
.selection_tool .step_3 .industry_selector ul li.active .active_indicator{
	opacity: 1;
	visibility: visible;
	color: #00bf00;
	animation-name: select-grow;
  	animation-duration: .75s;
}
.selection_tool .step_3 .industry_selector ul li:hover {
	background: #f0f0f0;
    border-radius: 8px;
}
.selection_tool .step_3 .industry_selector ul li:not(:last-child) {
	border-right: 1px solid #ebebeb;
}
.selection_tool .step_3 .industry_selector ul li img {
	width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}
.selection_tool .step_3 .industry_selector ul li p {
	font-size: 18px;
	color: var(--e-global-color-secondary);
}

.selection_tool .step_4 {
	text-align: center;
}

.selection_tool .step_4 .country_selector_wrapper {
	opacity: 0;
	visibility: hidden;
	transition: 300ms;
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}
.selection_tool .step_4 .country_selector_wrapper.open {
	opacity: 1;
	visibility: visible;
}

.selection_tool .step_4 .country_selector {
	background: white;
    max-width: 350px;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.selection_tool .step_4 .country_selector ul {
	margin: 0;
	padding: 0;
	margin-top: 20px;
}
.selection_tool .step_4 .country_selector ul li {
	list-style-type: none;
    display: flex;
    width: 350px;
    margin: 0;
    border-bottom: 1px solid #ebebeb;
    padding: 4px 5px;
    align-items: center;
    cursor: pointer;
    position: relative;
}
.selection_tool .step_4 .country_selector ul li:hover {
	background: #ebebeb;
    border-radius: 8px;
}
.selection_tool .step_4 .country_selector ul li:last-child {
    border-bottom: none;
}

.selection_tool .step_4 .country_selector ul li p {
	margin: 0;
}
.selection_tool .step_4 .country_selector ul li img {
	width: 30px;
    margin: 3px;
    border-radius: 50%;
    height: 30px;
    object-fit: cover;
    margin-right: 15px;
}
.selection_tool .step_4 .country_selector ul li span.active_indicator {
	opacity: 0;
    visibility: hidden;
}
.selection_tool .step_4 .country_selector ul li.active span.active_indicator {
	position: absolute;
    right: 10px;
    color: #00bf00;
    opacity: 1;
    visibility: visible;
    animation-name: select-grow;
    animation-duration: .75s;
}

.selection_tool .step_5 {
	text-align: center;
	border-bottom: none;
}

.selection_tool button {
    border: 2px solid var(--e-global-color-primary);
    padding: 8px 16px;
    border-radius: 100px;
    width: 50%;
    color: var(--e-global-color-primary);
    cursor: pointer;
    background: transparent;
    transition: 200ms;
}

.selection_tool button:hover {
	color:white;
}

button.submit{
	background: var(--e-global-color-primary);
    padding: 8px 16px;
    border-radius: 100px;
    width: 200px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 200ms;	
	font-size: 14px;
}
button.submit:hover{
	transform: scale(1.03);
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.slider_area{
	margin-bottom: 25px;
}

.the_slider {
	background-image: url(img/matchfinder-slider-bg.png);
	
	max-width: 350px;
	height: 25px;
	padding: 0 20px;
	margin: 0 -20px;
	border: 3px solid var(--e-global-color-primary);
	border-radius: 100px;
	background-position: center;
	background-repeat: repeat-y;
	background-size: contain;
}
.the_slider input {
	width: 300px;
    -webkit-appearance: none;
    height: 25px;
    background: transparent;
    outline: none;
    opacity: 1;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.the_slider input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 16px;
    background: transparent;
    cursor: pointer;
    margin-top:20px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom:20px solid var(--e-global-color-secondary);
}
.the_slider input::-moz-range-thumb {
    width: 20px;
    height: 16px;
    background: transparent;
    cursor: pointer;
    margin-top: 20px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 20px solid var(--e-global-color-secondary);
}

.amount{
	text-align: center;
}
.amount h3{
	color: var(--e-global-color-secondary);
    font-family: "Exo", Sans-serif;
    font-size: 70px;
    font-weight: 700;
    text-align: center;
    margin: 20px auto;
}
.amount small{
	color: var(--e-global-color-secondary);
    margin-top: -30px;
    display: block;
    font-size: 18px;
    margin-bottom: 18px;
}

.selection_tool .select_stackable {
	flex: 1 0 34%;
	display: flex;
	flex-wrap: wrap;
}

.selection_tool .select_stackable .select_wrapper {
	flex: 1 0 34%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.selection_tool .select_stackable .select_wrapper .item {
	flex: 1 0 12%;
	max-width: 30%;
	display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px;
    padding-bottom: 10px;
    flex-direction: column;
    transition: 300ms;
    cursor: pointer;
}


.selection_tool .select_stackable .select_wrapper .item p.title {
	text-align: center;
	margin: 8px 0 0 0;
	color: var(--e-global-color-secondary);
	font-size: 15px;
    display: flex;
    flex-direction: column;
}

.selection_tool .select_stackable .select_wrapper .item.active p.title {
	font-weight: bold;
}

.selection_tool .select_stackable .select_wrapper .item p.title i {
	margin-right: 0px;
	margin-bottom: 10px;
	font-size: 16px;
}

.selection_tool .select_stackable .select_wrapper .item img {
	height: 65px;
	transition: 300ms;
	max-width: 100px;
}
.selection_tool .select_stackable .select_wrapper .item:hover img {
	transform: scale(1.1);
}

.selection_tool .select_stackable .select_wrapper .item.active img {
	transform: scale(1.2);
}
.selection_tool .select_stackable .select_wrapper .item.active:hover img {
	transform: scale(1.2);
}


/*The whole pallet stack*/

.pallet {
	width: 127px;
	max-width: 127px;
	height: 262px;
	display: flex;
	align-items: flex-end;
	flex-direction: column-reverse;
}


/*Base*/

.pallet .base {
	margin-top: 4px;
}

.pallet .row {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	margin: 0;
}

.pallet .row.faded {
	opacity: 0.3;
}


/*Items*/

.pallet .items {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
	align-items: flex-end;
	align-content: flex-end;
}


/*Item*/

.pallet .items .item {
	width: 50%;
	max-width: 50%;
	margin-top: auto;
}

.pallet .items .item.half {
	max-width: 25%;
}


/*Bags*/

.pallet .items .item.bag {
	height: 21px;
}




/*======================================================================*/
/*-----------------------------  RESULTS!  -----------------------------*/
/*======================================================================*/

.match_html{
	display: none;
}

.selection_tool.show-result{
	all: unset;
	display: flex;
	flex-direction: row;
	justify-content: center;
    align-items: center;
}

.selection_tool.show-result .info{
	flex: 1 0 51%;
	max-width: 33%;
    padding: 10px 35px 10px 10px;
}
.selection_tool.show-result .info p{
	font-size: 13px;
}
.selection_tool.show-result .info h3{
	font-size: 22px;
    color: var(--e-global-color-secondary);
    margin: 0;
}


.selection_tool.show-result .result_controls{
	display: flex;
    padding-top: 15px;
}
.selection_tool.show-result .result_controls .more_info_palletizer{
	transition: 200ms;
    color: white;
    background: var(--e-global-color-primary);
    border: 2px solid var(--e-global-color-primary);
    margin-bottom: 10px;
    border-radius: 100px;
    padding: 5px 20px;
    text-decoration: none;
    font-family: Exo;
    font-size: 14px;
    margin-right: 5px;
    text-align: center;
}
.selection_tool.show-result .result_controls .more_info_palletizer:hover{
	color: white;
	background: var(--e-global-color-secondary);
    border: 2px solid var(--e-global-color-secondary);
}
.selection_tool.show-result .result_controls .reset_tool{
	transition: 200ms;
    background: white;
    color: var(--e-global-color-primary);
    border-color: var(--e-global-color-primary);
    margin-bottom: 10px;
    border-radius: 100px;
    border: 2px solid;
    padding: 5px 20px;
    text-decoration: none;
    font-family: Exo;
    font-size: 14px;
    text-align: center;
}
.selection_tool.show-result .result_controls .reset_tool:hover{
	color: white;
    background: var(--e-global-color-primary);
    border: 2px solid;
    border-color: var(--e-global-color-primary);
}

.selection_tool.show-result .palletizer{
    flex: 1 0 51%;
    max-width: 33%;
    padding: 10px;
}

.selection_tool.show-result .palletizer img{
	max-width: 100%;
	animation: grow 8s;
}

@keyframes grow{
	0%{ transform: scale(0.7); opacity: 0; }
	10%{ opacity: 1; }
	100%{ transform: scale(1); }
}


.contactCard{
	flex: 1 0 51%;
    max-width: 250px;
    background:  var(--e-global-color-secondary);
    border-radius: 6px;
    color: white;
}
.contactCard .card{
	box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 15%);
	overflow: hidden;
}
.contactCard .card img{
	border-radius: 6px 6px 0 0;
}
.contactCard .card .cardInfo{
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.contactCard .card .cardInfo *{
	margin: 0;
}
.contactCard .card .cardInfo h4{
	font-size: 11px;
	font-weight: 400;
}
.contactCard .card .cardInfo h3{
	font-size: 16px;
}
.contactCard .card .cardInfo hr{
	border: none;
	border-top: 1px solid white;
	width: 60%;
	margin: 10px 0;
}
.contactCard .card .cardInfo p{
	text-align: center;
	font-size: 12px;
	margin: 10px;
}
.contactCard .card .cardInfo .buttons{
	display: flex;
	flex-direction: column;
	margin: 5px 0 10px 0;
}
.contactCard .card .cardInfo .buttons a{
	color: white;
    background: var(--e-global-color-primary);
    text-decoration: none;
    font-size: 13px;
    display: inline-block;
    margin: 5px 10px;
    padding: 5px 15px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:  150ms;
}
.contactCard .card .cardInfo .buttons a:hover{
    background: white;
    color: var(--e-global-color-secondary);
}




.navigation_mobile{
	display: none;
}



/*======================================================================*/
/*-----------------------------  MOBILE!  ------------------------------*/
/*======================================================================*/
@media (max-width: 1024px){

	.navigation_mobile{
		display: flex;
		width: 100%;
		justify-content: center;
		margin: 10px 0;
	}

	.navigation_mobile button {
	    background: var(--e-global-color-primary)!important;
	    padding: 8px 16px;
	    border-radius: 100px;
	    width: auto!important;
	    color: white;
	    cursor: pointer;
	    background: transparent;
	    transition: 200ms;
	    margin: 0 10px;
	}

	.selection_tool_steps{
		width: calc(100% - 30px);
		opacity: 1;
		visibility: visible;
		transition: 300ms;
		position: absolute;
		top: 0;
		height: 80vh;
		max-height: 500px;
	}

	.selection_tool_steps.m_hide{
		opacity: 0;
		visibility: hidden;
		/*flex: 1 0 80%;*/
	}


	.trigger_country_select,
	.trigger_industry_select{
		margin: 15px 0 30px 0;
	}

	.selection_tool .step_3 .industry_selector ul li img {
	    width: 100px!important;
	    height: 65px!important;
	}




	/*RESULTS*/
	.selection_tool.show-result .palletizer img {
	    max-height: 220px;
	}

	.selection_tool.show-result {
	    flex-direction: column;
	}
	.selection_tool.show-result .info {
	    flex: 1 0 51%;
	    max-width: 100%;
	    padding: 20px;
	}



}
/*======================================================================*/
/*---------------------------  END MOBILE!  ----------------------------*/
/*======================================================================*/