/**=========================
    START ROOT
=========================**/
.container-none{background-color: #ccc;}
:root{
    --theme-primary-font: "Roboto", serif;
    --theme-secondary-font: "Poppins", serif;
    --theme-primary-color: #8213fd;
    --theme-yellow-color: #FFDD18;
    --theme-secondary-color: #000;
    --theme-primary-color-light: #eff6ff;
    --theme-secondary-color-light: #eeeeee;
    --theme-text-color: #7a7a7a;
    --theme-font-size: 16px;
    --theme-line-height: 1.6;
    --theme-box-shadow: 6px 6px 30px 0px #f5f5f5;
}
*,
*::before,
*::after{
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    border: none;
    outline: none;
    box-sizing: inherit;
}
html{
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    border: none;
    outline: none;
    box-sizing: border-box;
}
body{
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    font-family: var(--theme-secondary-font);
    font-size: var(--theme-font-size);
    line-height: var(--theme-line-height);
    background-color: #fff;
    color: var(--theme-text-color);
    /*overflow-x: hidden;*/
}
a{
    color: var(--theme-secondary-color);
    text-decoration: none;
    transition: .4s;
}
a:hover,
a:focus,
a:active{
    color: var(--theme-primary-color);
    text-decoration: none;
    transition: .4s;
}
i,
svg{
    transition: .4s;
}
p,
.p{
    font-size: var(--theme-font-size);
    color: var(--theme-text-color);
    transition: .4s;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6{
    clear: both;
    color: var(--theme-secondary-color);
}
ul,
li{
    color: var(--theme-text-color);
}
figure{
    width: 100% !important;
}
label{
    margin-bottom: 10px;
}
/**=========================
    END ROOT
=========================**/

/**=========================
    START BTN
=========================**/
.theme-btn,
[type="submit"]{
    position: relative;
    z-index: 9;
    display: inline-block;
    padding: 14px 24px 14px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
    outline: none;
    transition: all .4s;
}
.theme-btn-sm{
    padding: 5px 10px 5px 10px;
}
.theme-icon-btn{
    position: relative;
    z-index: 9;
    display: inline-block;
    text-align: center;
    border: 1px solid transparent;
    transition: all .4s;
}
.theme-icon-btn-sm{
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
}
.theme-icon-btn-md{
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 32px;
}
.pulse-btn{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    border-radius: 100%;
    background-color: #fff;
    z-index: 9;
    transition: all 0.4s;
}
.pulse-btn:before,
.pulse-btn:after{
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    border-radius: 100%;
    z-index: -1;
}
.pulse-btn:before{
    animation: 1s infinite;
}
.pulse-btn:after{
    animation: 2s infinite;
}
.pulse-btn-size{
    width: 80px;
    height: 80px;
    line-height: 80px;
}
.pulse-btn-black:before,
.pulse-btn-black:after{
    animation-name: pulse_animation_black;
}
.pulse-btn-white:before,
.pulse-btn-white:after{
    animation-name: pulse_animation_white;
}
@keyframes pulse_animation_black{
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, .5);
    }
    100% {
        box-shadow: 0 0 0 40px rgba(0, 0, 0, 0);
    }
}
@keyframes pulse_animation_white{
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .5);
    }
    100% {
        box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    }
}
.theme-btn-primary,
[type="submit"]{
    background-color: var(--theme-primary-color);
    color: #fff;
}
.theme-btn-hover-primary:hover,
.theme-btn-hover-primary:active,
.theme-btn-hover-primary:focus{
    background-color: var(--theme-primary-color);
    color: #fff;
}
.theme-btn-secondary{
    background-color: var(--theme-secondary-color);
    color: #fff;
}
.theme-btn-hover-secondary:hover,
.theme-btn-hover-secondary:active,
.theme-btn-hover-secondary:focus,
[type="submit"]:hover,
[type="submit"]:active,
[type="submit"]:focus{
    background-color: var(--theme-secondary-color);
    color: #fff;
}
.theme-btn-yellow{
    background-color: var(--theme-yellow-color);
    color: #000;
}
.theme-btn-outline-secondary{
    border-color: var(--theme-secondary-color);
}
.theme-btn-white,
.theme-icon-btn-white{
    background-color: #fff;
}
.theme-search-btn{
    padding: 15px 15px 15px 15px;
}
.theme-search-btn i{
    vertical-align: middle;
    line-height: 1;
    display: inline-block;
}
/**=========================
    END BTN
=========================**/

/**=========================
    START BG
=========================**/
.theme-bg,
.theme-bg-after{
    position: relative;
    z-index: 9;
}
.theme-bg-before:before,
.theme-bg-after:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.theme-bg-primary-100:after{
    background-color: var(--theme-primary-color);
    opacity: .1;
}
.theme-bg-primary-200:after{
    background-color: var(--theme-primary-color);
    opacity: .2;
}
.theme-bg-primary-300:after{
    background-color: var(--theme-primary-color);
    opacity: .3;
}
.theme-bg-primary-400:after{
    background-color: var(--theme-primary-color);
    opacity: .4;
}
.theme-bg-primary-500:after{
    background-color: var(--theme-primary-color);
    opacity: .5;
}
.theme-bg-primary-600:after{
    background-color: var(--theme-primary-color);
    opacity: .6;
}
.theme-bg-primary-700:after{
    background-color: var(--theme-primary-color);
    opacity: .7;
}
.theme-bg-primary-800:after{
    background-color: var(--theme-primary-color);
    opacity: .8;
}
.theme-bg-primary-900:after{
    background-color: var(--theme-primary-color);
    opacity: .9;
}
.theme-bg-secondary-100:after{
    background-color: var(--theme-secondary-color);
    opacity: .1;
}
.theme-bg-secondary-200:after{
    background-color: var(--theme-secondary-color);
    opacity: .2;
}
.theme-bg-secondary-300:after{
    background-color: var(--theme-secondary-color);
    opacity: .3;
}
.theme-bg-secondary-400:after{
    background-color: var(--theme-secondary-color);
    opacity: .4;
}
.theme-bg-secondary-500:after{
    background-color: var(--theme-secondary-color);
    opacity: .5;
}
.theme-bg-secondary-600:after{
    background-color: var(--theme-secondary-color);
    opacity: .6;
}
.theme-bg-secondary-700:after{
    background-color: var(--theme-secondary-color);
    opacity: .7;
}
.theme-bg-secondary-800:after{
    background-color: var(--theme-secondary-color);
    opacity: .8;
}
.theme-bg-secondary-900:after{
    background-color: var(--theme-secondary-color);
    opacity: .9;
}
.theme-bg-primary{
    background-color: var(--theme-primary-color);
}
.theme-bg-secondary{
    background-color: var(--theme-secondary-color);
}
.theme-bg-white{
    background-color: #fff;
}
.theme-bg-light{
    background-color: #f1f1f1;
}
/**=========================
    END BG
=========================**/

/**=========================
    START TEXT
=========================**/
.theme-text-primary{
    color: var(--theme-primary-color);
}
.theme-text-secondary{
    color: var(--theme-secondary-color);
}
.theme-text-left{
    text-align: left;
}
.theme-text-center{
    text-align: center;
}
.theme-text-right{
    text-align: right;
}
/**=========================
    END TEXT
=========================**/

/**=========================
    START INPUTS
=========================**/
.form-control,
[type="search"],
[type="text"],
[type="password"],
[type="number"],
[type="tel"],
[type="email"],
[type="url"],
textarea,
select{
    position: relative;
    display: inline-block;
    width: 100%;
    height: auto;
    margin: 0px 0px 0px 0px;
    padding: 15px 25px 15px 25px;
    font-size: var(--theme-font-size);
    line-height: var(--theme-line-height);
    border: 1px solid #ddd;
    border-radius: 0;
    background-color: #fff;
    color: var(--theme-color-secondary);
    transition: all 0.4s;
}
.form-control:focus,
[type="search"]:focus,
[type="text"]:focus,
[type="password"]:focus,
[type="number"]:focus,
[type="tel"]:focus,
[type="email"]:focus,
[type="url"]:focus,
textarea:focus,
select:focus{
    box-shadow: 0 0 0 0;
    outline: 0;
}
select{
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #081839 50%), linear-gradient(135deg, #081839 50%, transparent 50%);
    background-position: calc(100% - 30px) calc(1em + 10px), calc(100% - 26px) calc(1em + 10px), 100% 0%;
    background-size: 5px 5px;
    background-repeat: no-repeat;
}
[dir="rtl"] select{
    background-position: calc(26px) calc(1em + 10px), calc(30px) calc(1em + 10px), 100% 0%;
}
/**=========================
    END INPUTS
=========================**/