/* Infinite Build Solutions HTML Template customizations */

/************ TABLE OF CONTENTS ***************
1. Logo
2. Typography
**********************************************/

/*** 

====================================================================
	Logo
====================================================================

 ***/
.cs-web-logo{
	width: 220px;
	height: 128px;
}
/*** 

====================================================================
	Typography
====================================================================

 ***/
.cs-lp5 {
	padding-left: 5px;
}

.require {
	color: red;
}
.require:before {
	
	content: "•";
	margin-top:-15px;
}
.form-label {
	margin-bottom: 0px !important;
}
.text-red {
	color: red !important;
}
/*** 

====================================================================
	Buttons
====================================================================

 ***/
.btn-submit-form {
	margin: 10px auto;
}
.btn-xs {
	font-size: 12px !important;
	padding:0px 5px !important;
	border-radius: 2px;
}
/*** 

====================================================================
	Menu
====================================================================

 ***/
.main-menu .navigation > li > ul
{
border: none;
padding: 5px;
background-color: rgba(0,0,0,0.8);
}
.cs-submenu-col .current
{
	color: ghostwhite;
	font-weight: bold;
}
.cs-submenu-row {
	max-height: 300px;
	overflow: hidden;
	overflow-y: scroll;
	
}
.cs-submenu-col li {
}
.cs-dropdown {
	white-space: nowrap;
}

.cs-dropdown a{
	color: #2ecc40;
}
.cs-dropdown a:hover{
	color:#23b169;
}
/*** 

====================================================================
	Icons
====================================================================

 ***/
.service-icon {
	max-width: 100px;
	max-height: 100px;
}
/*** 

====================================================================
	Calendar
====================================================================

 ***/
#quote-calendar {
	display: none;
}
.calendar {
	border:1px solid #CCCCCC;
	border-radius: 5px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	padding: 20px;
}
.calendar-cell {
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 2px;
	text-align: center;
	font-family: Arial, sans-serif;
}
.calendar-cell button {
	margin: 5px;
	padding: 5px 10px;
	font-size: 14px;
	cursor: pointer;
}

.calendar-cell button {
	cursor: pointer;
}
.calendar-active {
	background-color: #4caf50;
	color: white;
}
form {
	border:none !important;
}
/*** 

====================================================================
	Messages
====================================================================

 ***/
.message-box {
	background-color: aliceblue;
	border-radius: 5px;
}
.message-verification-box {
	padding: 20px;
}
/*** 

====================================================================
	Gallery
====================================================================

 ***/
.gallery-overlay-label {
	position: absolute;
	bottom: 25px;
	background-color:rgba(0,0,0,0.60);
	max-width: 250px;
	color: aliceblue;
	font-size: 25px;
	font-family: "Archivo", sans-serif;
}
.overlay-box {
	overflow: hidden !important;
}
.options { margin-top:-20px;margin-right:-20px;}
/*** 

====================================================================
	Preloaders
====================================================================

 ***/
/* HTML: <div class="verification-loader"></div> */
.verification-loader {
	margin: auto;
  width: 50px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #23b169;
  --_m: 
    conic-gradient(#0000 10%,#000),
    linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
          mask: var(--_m);
  -webkit-mask-composite: source-out;
          mask-composite: subtract;
  animation: l3 1s infinite linear;
}
@keyframes l3 {to{transform: rotate(1turn)}}

@media screen and (max-width: 600px) {
  .info-outer {
    visibility: hidden;
    clear: both;
    float: left;
    margin: 10px auto 5px 20px;
    width: 28%;
    display: none;
  }
	.page-title {
		padding: 0px;
		max-height: 100px;
	}
}
.ibs-upper-inner {
    position: relative;
    padding-left: 150px;
    padding-right: 0px;
}

.ibs-upper-inner::before {
    position: absolute;
    content: '';
    left: 0px;
    top: -45px;
    width: 110px;
    height: 172px;
    background-image: url('../images/icons/brush.png');
    background-size: contain;
    background-repeat: no-repeat;
    animation: zoom-fade-color 3s linear infinite;
    filter: grayscale(100%);
}

@keyframes zoom-fade-color {
    0% {
        transform: scale(1);
        opacity: 1;
        filter: grayscale(100%);
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
        filter: grayscale(0%);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        filter: grayscale(100%);
    }
}
/*
.ibs-upper-inner {
    position: relative;
    padding-left: 150px;
    padding-right: 0px;
}

.ibs-upper-inner::before {
    position: absolute;
    content: '';
    left: 0px;
    top: -45px;
    width: 110px;
    height: 172px;
    background-image: url('../images/icons/brush.png');
    background-size: contain;
    background-repeat: no-repeat;
    animation: zoom-fade 3s linear infinite;
}

@keyframes zoom-fade {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}*/
/*
.ibs-upper-inner{
	position:relative;
	padding-left:200px;
	padding-right:0px;
}
.ibs-upper-inner:before{
	position:absolute;
	content:'';
	left:0px;
	top:-45px;
	width:110px;
	height:172px;
	border:12px solid #eaeaea;
    animation-name: zoom-fade; 
    animation-duration: 3s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;
	
	-webkit-animation-name: zoom-fade; 
    -webkit-animation-duration: 3s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
	
	-moz-animation-name: zoom-fade; 
    -moz-animation-duration: 3s; 
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
	
	-ms-animation-name: zoom-fade; 
    -ms-animation-duration: 3s; 
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
	
	-o-animation-name: zoom-fade; 
    -o-animation-duration: 3s; 
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
*/