/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://example.com/hello-elementor-child
 Description:  A child theme for the Hello Elementor WordPress theme
 Author:       1click developers
 Author URI:   https://example.com
 Template:     hello-elementor
 Version:      1.0.0
 Text Domain:  hello-elementor-child
*/

/* Add your custom styles below this line */
h2.age-gate__headline{
    color: black !important;
        font-size: 34px !important;
    font-weight: 600 !important;
}

.age-gate-form, .age-gate__form {
      height: auto !important;
}

/* button animation css */
.animated-button {
    position: absolute;
    top: 50%;
    left: 0;
    color: #ffffff;
    overflow: hidden;
    padding: 20px 30px;
    font-size: 16px;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.1);
}

.animated-button:before {
    position: absolute;
    width: 50%;
    top: 2px;
    left: 2px;
    bottom: 2px;
    content: '';
    background: rgba(255, 255, 255, 0.1);
}

.animated-button .span-1 {
    position: absolute;
    width: 100%;
    height: 2px;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #000000, #ffffff);
    animation: animate1 2s linear infinite;
}

@keyframes animate1 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.animated-button .span-2 {
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    right: 0;
    background: linear-gradient(to bottom, #000000, #ffffff);
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate2 {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

.animated-button .span-3 {
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;
    background: linear-gradient(to left, #000000, #ffffff);
    animation: animate3 2s linear infinite;
}

@keyframes animate3 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.animated-button .span-4 {
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to top, #000000, #ffffff);
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate4 {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}

/*user submitted post*/
div#user-submitted-posts input{
    padding: 10px !important;
}

div#mceu_28-body button{
    background-color: #ffffff;
    color: #000000;
    
}

div#mceu_28-body button:hover{
    background-color: #000000;
    color: #ffffff;
}


div#user-submitted-posts form label{
    margin: 10px 0px !important;
}

div#respond  h2#reply-title {
    font-size: 34px !important;
}

/*tmc form*/
button#uspcontent-tmce {
    padding: 10px 20px;
}	

button#uspcontent-html {
    padding: 10px 20px;
}