/**
 * Theme Name: elementor-child
 * Template:   royal-elementor-kit
 */

 /* Import the parent theme's stylesheet */
@import url("../royal-elementor-kit/style.css");


/* Custom styles */
.custom-product-filter {
	-webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: #ffffff;
    border: none;
    color: #666666;
    margin: 0;
    position: relative;
	box-shadow: 1px 1px 20px 0px #E9E9E9;
}

.custom-product-filter__heading {
	color: #666666;
    font-size: 20px;
    font-weight: 500;
    padding: 24px 24px 0;
}

.custom-product-filter__subheading {
	color: #748082;
    display: block;
    font-size: .7em;
    font-weight: 400;
}

.custom-product-filter__content {
	padding: 20px 24px 24px;
    position: relative;
}

.custom-product-filter__form {
	display: block;
    position: relative;
    width: 100%;
    z-index: 22;
}

.custom-product-filter__select {
	flex: 1;
    position: relative;
	width: 100%;
    margin-bottom: 12px;
	padding-left: 8px;
    min-height: 48px;
	border: 1px solid #edecec;
	cursor: pointer;
}

.custom-product-filter__select:disabled {
	cursor: default;
}

.custom-product-filter__submit {
	width: 100%;
	align-items: center;
    background-color: #ff7100;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    min-width: 40px;
    padding: 14px;
	margin-left: 0;
	margin-bottom: 0;
    text-align: center;
    text-transform: uppercase;
	float: none;
	border-color: #ff7100;
}

.custom-product-filter__overlay {
	display: flex;
	position: absolute;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 25;
}

.custom-product-filter__loader {
    border: 2px solid #f3f3f3;
    border-radius: 50%;
    border-top: 2px solid rgba(0, 0, 0, 0.5);
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@media only screen and (min-width: 741px) {
	.custom-product-filter__heading {
		font-size: 24px;
		padding: 24px 32px 0;
	}
	
	.custom-product-filter__content {
        padding: 20px 32px 24px;
    }
	
	.custom-product-filter__form {
        display: flex;
    }
	
	.custom-product-filter__select {
		width: unset;
        margin-bottom: 0;
        margin-left: 8px;
        min-height: 62px;
    }
	
	.custom-product-filter__select:first-child {
        margin-left: 0;
    }
	
	.custom-product-filter__submit {
        padding: 22px 0;
		margin-left: 8px;
        width: 10%;
    }
}