#custom-buttons-container {
  display: grid;
    
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    grid-template-columns: auto auto;
    column-gap: 15px;
    row-gap: 30px;
    margin-top: 35px;
}

.custom-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    /* margin: 10px; */
    padding: 10px;
    background-color: #f2f2f2;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.custom-button:hover {
    background-color: #ddd !important;
}

.custom-button-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
}

#custom-iframe-container {
    display: none;
    position: relative;
    width: 100%;
}

#change-service-button{
 /* background-color: #2EA9EF !important; */
 color: #000 !important;
 max-width: 200px !important;
}

#custom-iframe-container iframe {
    width: 100%;
    min-height: 350px;
    height: calc(100vh - 140px); /* Adjust the height as needed */
    border: none;
     
    border-radius: 20px;
}

.custom-button {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    width: 45%;
    margin: 10px;
    padding: 10px;
    background-color: #ffffff !important;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
    column-gap: 3px;
}

.custom-button-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #00589C;
    color: #fff;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
}
.custom-button p{
    font-weight: 600;
    color: #00589C;
    margin-bottom: 0 !important;
}

.logo-container{
    text-align: center;
}
@media(max-width:768px){
	#custom-buttons-container{
		grid-template-columns:auto !important;
	}
	.custom-button{
		width:100% !important;
	}
}