.ova-toggle-content {
line-height: 1;
}
.ova-toggle-content .content {
transition: all 0.3s ease;
overflow: hidden;
overflow-y: auto;
position: fixed;
top: 0;
bottom: 0;
background-color: #222;
color: #fff;
line-height: 1.8em;
width: 380px;
padding: 50px;
z-index: 999;
opacity: 1;
}
.ova-toggle-content .content .close-menu {
transition: all 0.3s ease;
z-index: 999;
cursor: pointer;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: var(--primary);
display: inline-flex;
justify-content: center;
align-items: center;
position: absolute;
top: 30px;
right: 30px;
}
.ova-toggle-content .content .close-menu:hover {
transition: all 0.3s ease;
background-color: var(--heading);
}
.ova-toggle-content .content .close-menu:hover i {
transition: all 0.3s ease;
color: var(--primary);
}
.ova-toggle-content .content .close-menu i {
transition: all 0.3s ease;
display: inline-flex;
font-size: 14px;
color: #fff;
}
.ova-toggle-content .content.pos_left {
transition: all 0.3s ease;
left: 0;
transform: translate3d(-380px, 0, 0);
}
.ova-toggle-content .content.pos_right {
transition: all 0.3s ease;
right: 0;
transform: translate3d(380px, 0, 0);
}
.ova-toggle-content .content .wrap-content img {
display: block;
margin: 0 auto;
object-fit: cover;
}
.ova-toggle-content .content .wrap-content .content-title {
margin: 40px 0 20px 0;
color: #fff;
}
.ova-toggle-content .content .wrap-content .button-contact {
transition: all 0.3s ease;
background-color: var(--primary);
color: #fff;
padding: 15px 20px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
gap: 10px;
}
.ova-toggle-content .content .wrap-content .button-contact svg {
width: 15px;
height: 15px;
fill: #fff;
}
.ova-toggle-content .content .wrap-content .button-contact svg path {
fill: #fff;
}
.ova-toggle-content .content .wrap-content .button-contact:hover {
transition: all 0.3s ease;
color: var(--primary);
background-color: #fff;
}
.ova-toggle-content .content .wrap-content .contact-info-title {
margin: 40px 0 20px 0;
color: #fff;
}
.ova-toggle-content .content .wrap-content .contact-item {
display: flex;
align-items: center;
margin: 0 0 10px 0;
gap: 10px;
}
.ova-toggle-content .content .wrap-content .contact-item i {
display: inline-flex;
color: var(--primary);
}
.ova-toggle-content .content .wrap-content .list-social {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 20px 0 0 0;
}
.ova-toggle-content .content .wrap-content .list-social .social {
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
justify-content: center;
background-color: var(--primary);
width: 40px;
height: 40px;
border-radius: 50%;
}
.ova-toggle-content .content .wrap-content .list-social .social:hover {
transition: all 0.3s ease;
background-color: var(--heading);
}
.ova-toggle-content .content .wrap-content .list-social .social:hover i {
transition: all 0.3s ease;
color: #fff;
}
.ova-toggle-content .content .wrap-content .list-social .social i {
transition: all 0.3s ease;
display: inline-flex;
color: #fff;
}
.ova-toggle-content .site-overlay {
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #000;
opacity: 0;
visibility: hidden;
position: fixed;
z-index: 998;
}
.ova-toggle-content.toggled .content.pos_left {
transition: all 0.3s ease;
transform: none;
}
.ova-toggle-content.toggled .content.pos_right {
transition: all 0.3s ease;
transform: none;
}
.ova-toggle-content.toggled .site-overlay {
transition: all 0.3s ease;
opacity: 0.8;
visibility: visible;
}
.ova-toggle-content .button-toggle {
transition: all 0.3s ease;
display: inline-flex;
justify-content: center;
align-items: center;
gap: 10px;
border: none;
background-color: transparent;
padding: 0;
}
.ova-toggle-content .button-toggle i {
display: inline-flex;
font-size: 26px;
color: var(--primary);
}
.ova-toggle-content .button-toggle:before, .ova-toggle-content .button-toggle:after {
width: 0;
}
.ova-toggle-content .button-toggle span:before {
width: 0;
}
.ova-toggle-content .button-toggle:hover {
transition: all 0.3s ease;
}
.ova-toggle-content .button-toggle:hover .title {
color: var(--primary);
}
.ova-toggle-content .button-toggle:hover i {
color: var(--primary);
}
.ova-toggle-content .button-toggle .title {
font-size: 16px;
font-weight: 500;
line-height: 1.2;
}
@media (max-width: 1024px) {
.ova-toggle-content .button-toggle .title {
font-size: 14px;
}
}
.ova-toggle-content .dropdown-toggle {
background: transparent;
position: absolute;
top: 0;
right: 0;
display: block;
padding: 0.5em 0 0.5em 10px;
color: inherit;
border-radius: 0;
border: none;
cursor: pointer;
}
.ova-toggle-content .dropdown-toggle::after {
content: "\f104";
font-family: "ovaicon";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: normal;
line-height: 1;
vertical-align: middle;
font-size: 0.6em;
}
.ova-toggle-content .dropdown-toggle:focus {
outline: none;
}
.ova-toggle-content .dropdown-toggle:hover {
background: transparent;
}
.ova-toggle-content .dropdown-toggle.toggled-on:after {
content: "\f10c";
font-family: "ovaicon";
}