/*
This file contains delayable hovers CSS that will not be loaded on mobile and will be preloaded Asynchronously using Google's recommended filamentgroup loadCSS link stylesheet trick
Type: Hovers and animations
Usage: loadCSS link stylesheet trick
Load: Asynchronously
Devices: Desktops, Laptops
 */

.wpcf7 input:focus, .wpcf7 textarea:focus, .wpcf7 select:focus {
    outline: none
}

textarea::-webkit-scrollbar {
    width: 8px;
    background-color: #F5F5F5
}

textarea::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #4285F4
}

.wpcf7 input[type=submit] {
    transition: background-color 0.2s linear
}

.wpcf7 input[type=submit]:hover {
    background-color: #0a0018;
    color: #fff
}

.wpcf7 select option:hover {
    background-color: #cecece
}

.social {
    transition: background-color 0.2s linear
}

.social:hover {
    background-color: #0a0018
}

.social:hover img {
    filter: invert(1)
}