/*
Theme Name: Sudaroof
Author: Dev
Version: 1.4
Text Domain: sudaroof
*/


.wpcf7 form .wpcf7-response-output {  border:none !important}
#page-loader {
	display:none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.75); /* semi-transparent */
    backdrop-filter: blur(3px); /* optional blur */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}
.load_more .learn-btn {
cursor:pointer;	
	
}
/*
.footer .foot-product ul {
    display: block;
    flex-wrap: wrap;
    margin: 0 -12px;
    column-count: 2;
    column-gap: 24px;
}
.footer .foot-product ul li {
     width: 100%;
	 }

*/
.loader {
	
    width: 48px;
    height: 48px;
    border: 5px solid #143d59;
    border-bottom-color: #fff;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    } 