/* SEOC */	

/*-> Floating Buttons */

.seoc-side-section{
    padding: 0 10px;
}

.seoc-side-button-section{
    display: none;
	position: fixed;
    z-index: 500;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #3a6e95a8;
    padding: 12px 10px;
    /* width: calc(100% - 22px); */
    width: 100%;
    backdrop-filter: blur(10px);
}

.seoc-side-section-inner{
    width: 100%;
    max-width: 310px;
    margin: auto;
}

.seoc-side-form-arrow{
    margin: 0 0 20px;
}

.seoc-side-form-arrow img{
    display: block;
    width: 42px;
    height: auto;
    margin: auto;
}

.seoc-side-form-buttons {
    display: none;
}



.seoc-button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    min-height: 50px;
    width: fit-content;
    padding: 5px 22px;
    border: 1px solid #efbb10;
    outline: none;
    overflow: hidden;
    background: #efbb10;
    color: #082753;
    font-family: "Rubik", sans-serif;
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
    white-space: nowrap;
    text-decoration: none;    
    border-radius: 100px;
}

.seoc-button.seoc-button-alt{
    background: #082753;
    color: #efbb10;
}
    
	
@media (max-width: 767px){
    
    
    body {
        padding-bottom: 74px;
    }
	
    .seoc-side-button-section {
        display: block;
    }
    .seoc-side-form-buttons{
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }
    .seoc-side-form-buttons .seoc-button{
        min-width: 170px;
    }
}	
