/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
.section > .section-content > .row > .col {
    padding-bottom: 0;
}
p {
    margin-bottom: 15px;
}
p:last-child {
    margin-bottom: 0;
}
h2 {
    font-size: 25px;
}
h3 {
    font-size: 22px;
}
/* .logo {
    display: none;
} */
form {
    margin-bottom: 0;
}
.box-price {
    margin: 0 -10px;
}
.box-price .box-price-col {
    width: 25%;
    float: left;
    padding: 0 10px;
}
.box-price .box-price-col:last-child {
    width: 20%;
}
.box-price .box-price-col select,
.box-price .box-price-col input.wpcf7-form-control {
    border-radius: 4px;
    background-color: #3d4959;
    border: 1px solid #596b82;
	color: #fff;
}
.box-price .box-price-col input.wpcf7-submit {
    width: 100%;
    background-color: #c99232;
}
.box-price ::-ms-input-placeholder { /* Edge 12-18 */
  color: #fff;
}

.box-price ::placeholder {
  color: #fff;
}
.wpcf7-spinner {
    position: absolute;
}

.box-price-2 .box-price-col select,
.box-price-2 .box-price-col input.wpcf7-form-control {
    background-color: #e2f5ff;
    border-radius: 4px;
    border: 1px solid #596b82;
}
.box-price-2 .box-price-col input.wpcf7-submit {
    background-color: #c99232;
    width: 155px;
    display: block;
    margin: 0 auto;
}
.box-price-2 ::-ms-input-placeholder { /* Edge 12-18 */
  color: #627382;
}

.box-price-2 ::placeholder {
  color: #627382;
}
ul ul {
    margin-top: 10px;
    margin-bottom: 10px;
}
.col-inner ul > li {
    margin-bottom: 7px;
}
.col-inner ul > li > ul {
    list-style-type: circle;
    margin-left: 15px;
}
.text > ul {
    margin-bottom: 0;
}
table {
    border: 1px solid #77ceff;
    background-color: rgb(119 206 255 / 20%);
}
td, th {
    border: 1px solid #77ceff;
}
td:first-child, th:first-child {
    padding-left: 10px;
}
.nav-tabs>li>a {
    background-color: #0c1c2f;
    color: #fff;
    font-size: 16px;
    font-weight: 400 !important;
    border: none;
    padding-left: 15.4px;
    padding-right: 15.4px;
}
.nav-tabs>li>a:hover {
    background-color: #fff;
    color: #0c1c2f;
}
.nav-tabs>li.active>a {
    color: #0c1c2f;
}
.nav-tabs+.tab-panels {
    border: none;
    padding: 15px;
}
.footer-title h4 {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    padding-left: 10px;
    margin-bottom: 0;
    letter-spacing: 0.7px;
}

.footer-wrapper p {
    font-size: 14px;
}
.footer-wrapper input.wpcf7-form-control {
    border: none;
    border-radius: 4px;
}
.footer-wrapper input.wpcf7-submit {
    position: absolute;
    top: 0;
    right: 0;
    margin-bottom: 0;
    background-color: transparent !important;
    background-image: url(images/plane.png);
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -999px;
}
.social-icons a {
    font-size: 18px !important;
    color: #fca91e;
}

.ux-menu-link__link {
    font-size: 14px;
}
.absolute-footer {
    display: none;
}

@media (min-width: 850px) {
    .box-price .box-price-col input.wpcf7-form-control {
        margin-bottom: 0;
    }
}

@media (max-width: 820px) { 
    .tabbed-content .nav-tabs>li {
        margin-bottom: 2px;
    }
}
@media only screen and (max-width: 480px) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/
    .box-price .box-price-col, .box-price .box-price-col:last-child {
        width: 100%;
    }

}

input[type=submit],
.button-r {
    transition: all 150ms linear 0s;
    animation-name: lacrung;
    -webkit-animation-name: lacrung;
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

.wpcf7-submit,
.button-t {
    transition: all 150ms linear 0s;
    animation-name: pulse;
    -webkit-animation-name: pulse;
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes lacrung {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg)
    }

    to {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg)
    }
}
@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}