/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

.wpforms-field-container input, .wpforms-field-container select, .wpforms-container .wpforms-form .wpforms-field.wpforms-field-name .wpforms-field-row {
    max-width: 100% !important;
    width: 100% !important;
    min-width: 100% !important;
}
.wpforms-field-row 	{
    max-width: 100% !important;
}
.ue_item_icon {
    border-color: #0D1939 !important;
}
#site-logo #site-logo-inner a:hover img {
    opacity: 1 !important;
}
a.omw-open-modal {
    background: #3376c7;
    padding: 12px;
    border-radius: 5px;
    font-weight: normal;
    color: #fff;
}
a.omw-open-modal:hover {
    color: #fff;
    zoom: 0.9;
}
.ue_item_icon {
    border: 2px solid #fff !important;
}
.accordion-item{
    background:#fff;
    border-radius:8px;
    margin-bottom:15px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.accordion-header{
    width:100%;
    padding:18px 20px;
    background:#fff;
    border:none;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-align:left;
    font-size:17px;
    font-weight:600;
    color:#222;
    transition:.3s;
}

.accordion-header:hover{
    background:#f2f6ff;
}

.icon{
    font-size:28px;
    color:#0056b3;
    transition:.3s;
    margin-left:20px;
}

.accordion-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
    background:#fafafa;
}

.accordion-content p{
    padding:20px 20px 20px;
    color:#555;
    line-height:1.8;
}

.accordion-item.active .accordion-header{
    color:#0056b3;
}

.accordion-item.active .icon{
    transform:rotate(45deg);
}

.wpforms-container .wpforms-field input, .wpforms-container .wpforms-field select, .wpforms-container .wpforms-field textarea {
    border-color: #bfbfbf !important;
	color: #262626 !important;
}

.wpforms-field input::placeholder, .wpforms-field textarea::placeholder {
    color: #262626 !important;
    opacity: 1 !important;
}
button#wpforms-submit-29 {
    padding-top: 11px;
}
span.topbar-content {
    display: flex;
    align-items: center;
}
.topbar-content i {
    font-weight: bold;
}
.footer-logo-image img {
    background: #fff;
    padding: 6px 10px;
}

/* ===========================
   WhatsApp Floating Widget
=========================== */

.whatsapp-widget{

    /* CUSTOMIZE HERE */
    --size:60px;              /* Icon size */
    --bottom:25px;            /* Distance from bottom */
    --side:25px;              /* Distance from side */
    --bg:#25D366;
    --shadow:0 8px 20px rgba(0,0,0,.25);

    position:fixed;
    bottom:var(--bottom);
    width:var(--size);
    height:var(--size);

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--bg);
    border-radius:50%;
    box-shadow:var(--shadow);

    z-index:9999;
    text-decoration:none;

    transition:.3s ease;
}

.whatsapp-widget.right{
    right:var(--side);
}

.whatsapp-widget.left{
    left:var(--side);
}

.whatsapp-widget:hover{
    transform:scale(1.08);
}

.whatsapp-icon{
    width:55%;
    height:55%;
}

.tooltip{
    position:absolute;
    right:calc(100% + 12px);

    white-space:nowrap;

    background:#333;
    color:#fff;

    padding:8px 12px;
    border-radius:6px;

    font-size:14px;

    opacity:0;
    visibility:hidden;

    transition:.3s;
}

.whatsapp-widget:hover .tooltip{
    opacity:1;
    visibility:visible;
}

/* Tooltip for Left Position */
.whatsapp-widget.left .tooltip{
    left:calc(100% + 12px);
    right:auto;
}

/* Mobile */
@media(max-width:768px){

    .whatsapp-widget{
        --size:52px;
        --bottom:18px;
        --side:18px;
    }

    .tooltip{
        display:none;
    }

}