* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}

html,
body {
    height: 100%;
    /*padding: 0 !important;*/
}

.page-wrap {
    min-height: 100%;
    margin-bottom: 0px;
}

.page-wrap:after {
    content: "";
    display: block;
}

footer,
.page-wrap:after {}


/*--------------General CSS---------*/

img {
    border: 0 none;
    max-width: 100%;
    vertical-align: top;
}

a {
    outline: none;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    /*color: #3e3e3e;*/
    text-decoration: none;
}

a:hover,
a:focus {
    /*color: #fe5e3a;*/
    text-decoration: none;
    outline: none;
}

button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

p {
    line-height: 27px;
}

p:last-child {
    margin-bottom: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    margin: 0px 0px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #797979;
    font-weight: 500;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-text-stroke: 1px transparent;
    background-color: #fff;
}


/* ======================menu css nad Go to top start  ====================== */

.topnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    color: #fff;
    -webkit-transition: all .7s;
    transition: all .7s;
    background: #FFF;
    box-shadow: 0 0px 20px 2px rgb(0 0 0 / 10%);
}

.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 44px;
    width: 44px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    content: 'Top';
    text-align: center;
    line-height: 44px;
    font-size: 11px;
    font-weight: normal;
    /*color: #ef4bbc;*/
    color: #000;
    left: 0;
    top: 0;
    height: 44px;
    width: 44px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
    font-weight: bold;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #ef4bbc;
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
    fill: #FFF;
}


/* ======================menu css nad Go to top end  ====================== */


/*-----------------------TOGGLE STICKY HOME CSS START-----------------------------------------------*/

.navbar-light .navbar-toggler {
    border: none;
    outline: none;
}

.nav-toggle-sm {
    transform: scale(.65);
    margin-right: -.3125rem;
}

.nav-toggle {
    width: 29px;
    height: 29px;
    display: inline-flex;
    vertical-align: middle;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    cursor: pointer;
}

.stick {
    width: 35px;
    height: 3px;
    margin-bottom: 5px;
    background-color: #ef4bbc;
    display: inline-block;
}

.body-menu-opened .collapsed .stick {
    background-color: #ef4bbc;
}

.body-menu-opened .stick-1 {
    animation: stick-1-open .85s ease-out forwards;
}

.body-menu-opened .stick-2 {
    animation: stick-2-open .85s linear forwards;
    width: 35px;
    margin-left: 0px;
}

.body-menu-opened .stick-3 {
    animation: stick-3-open .85s linear forwards;
}

.stick:last-child {
    margin-bottom: 0px;
}

@-webkit-keyframes stick-1-open {
    0% {
        width: 35px;
    }
    30% {
        width: 3px;
        transform: translate(14px, 0px);
    }
    65% {
        width: 3px;
        transform: translate(14px, -35px);
        animation-timing-function: cubic-bezier(0, 1, 1, 1);
    }
    100% {
        width: 2px;
        transform: translate(9px, 17px);
    }
}

@keyframes stick-1-open {
    0% {
        width: 35px;
    }
    30% {
        width: 3px;
        transform: translate(14px, 0px);
    }
    65% {
        width: 3px;
        transform: translate(14px, -35px);
        animation-timing-function: cubic-bezier(0, 1, 1, 1);
    }
    100% {
        width: 2px;
        transform: translate(9px, 17px);
    }
}

@-webkit-keyframes stick-2-open {
    65% {
        width: 35px;
        transform: translate(0px, 0px) rotate(0deg);
    }
    100% {
        width: 35px;
        transform: translate(0px, 0px) rotate(45deg);
    }
}

@keyframes stick-2-open {
    65% {
        width: 35px;
        transform: translate(0px, 0px) rotate(0deg);
    }
    100% {
        width: 35px;
        transform: translate(0px, 0px) rotate(45deg);
    }
}

@-webkit-keyframes stick-3-open {
    65% {
        transform: translate(0px, 0px) rotate(0deg);
    }
    100% {
        transform: translate(0px, -8px) rotate(-45deg);
    }
}

@keyframes stick-3-open {
    65% {
        transform: translate(0px, 0px) rotate(0deg);
    }
    100% {
        transform: translate(0px, -8px) rotate(-45deg);
    }
}

.body-menu-close .stick-1 {
    width: 3px;
    animation: stick-1-close .85s ease-out forwards;
}

.body-menu-close .stick-2 {
    animation: stick-2-close .85s ease-out forwards;
    margin-left: 0px;
}

.body-menu-close .stick-3 {
    animation: stick-3-close .85s ease-out forwards;
}

@-webkit-keyframes stick-1-close {
    0%,
    70% {
        width: 0px;
        transform: translate(0, 0);
    }
    100% {
        width: 35px;
        transform: translate(0, 0);
    }
}

@keyframes stick-1-close {
    0%,
    70% {
        width: 0px;
        transform: translate(0, 0);
    }
    100% {
        width: 35px;
        transform: translate(0, 0);
    }
}

@-webkit-keyframes stick-2-close {
    0% {
        width: 35px;
        transform: translate(0px, 0px) rotate(45deg);
    }
    20% {
        width: 3px;
        transform: translate(0, 0px) rotate(45deg);
    }
    40% {
        width: 0px;
    }
    65% {
        transform: translate(0, -26px);
        animation-timing-function: cubic-bezier(0, 1, 1, 1);
    }
    80% {
        width: 0px;
    }
    100% {
        width: 35px;
        transform: translate(0, 0px);
    }
}

@keyframes stick-2-close {
    0% {
        width: 35px;
        transform: translate(0px, 0px) rotate(45deg);
    }
    20% {
        width: 3px;
        transform: translate(0, 0px) rotate(45deg);
    }
    40% {
        width: 0px;
    }
    65% {
        transform: translate(0, -26px);
        animation-timing-function: cubic-bezier(0, 1, 1, 1);
    }
    80% {
        width: 0px;
    }
    100% {
        width: 35px;
        transform: translate(0, 0px);
    }
}

@-webkit-keyframes stick-3-close {
    0% {
        width: 35px;
        transform: translate(0px, -8px) rotate(-45deg);
    }
    20% {
        width: 3px;
        transform: translate(0, -8px) rotate(-45deg);
    }
    40% {}
    65% {
        transform: translate(0, -35px);
        animation-timing-function: cubic-bezier(0, 1, 1, 1);
    }
    90% {
        width: 3px;
    }
    100% {
        width: 35px;
        transform: translate(0, 0px);
    }
}

@keyframes stick-3-close {
    0% {
        width: 35px;
        transform: translate(0px, -8px) rotate(-45deg);
    }
    20% {
        width: 3px;
        transform: translate(0, -8px) rotate(-45deg);
    }
    40% {}
    65% {
        transform: translate(0, -35px);
        animation-timing-function: cubic-bezier(0, 1, 1, 1);
    }
    90% {
        width: 3px;
    }
    100% {
        width: 35px;
        transform: translate(0, 0px);
    }
}


/*-----------------------TOGGLE STICKY HOME CSS end-----------------------------------------------*/


/*-----------------------main styles starts here-----------------------------------------------*/

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

label {
    color: #001c27;
    font-weight: 400;
    margin-bottom: 10px;
}

p:last-child {
    margin-bottom: 0px;
}

.text_red {
    color: #dd4b39;
}

textarea.form-control {
    resize: none;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.form-control {
    height: 47px;
    box-shadow: none;
    border: 1px solid #dadada;
    border-radius: 20px;
    font-size: 14px;
    color: #747c84;
}

.form-control:focus {
    box-shadow: none;
    border-color: #ef4bbc;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.font_b {
    font-weight: 700;
}


/*=====================================	PLACE HOLDER CSSS START HERE 		====================================*/

input.form-control::-webkit-input-placeholder {
    color: #747c84;
}

input.form-control::-moz-placeholder {
    color: #747c84;
}

input.form-control::-ms-placeholder {
    color: #747c84;
}

input.textbox::-ms-input-placeholder {
    color: #747c84;
}

input.textbox::-ms-input-placeholder {
    color: #747c84;
}

.cf:before,
.cf:after {
    content: "";
    display: table
}

.cf:after {
    clear: both;
}

.container {
    width: 100%;
    max-width: 1170px;
}


/*===================================== PLACE HOLDER CSSS END HERE 		====================================*/


/*===================================== Commen Butons ===================================*/


/*------ Button css over ----------------*/


/*======================================================================*/


/*			CUSTOM CHECK BOX AND CUSTOM RADIO CSS START		*/

.custom-checkbox [type="checkbox"]:not(:checked),
.custom-checkbox [type="checkbox"]:checked {
    left: -9999px;
    position: absolute;
}

.custom-checkbox [type="checkbox"]:not(:checked)+label:before,
.custom-checkbox [type="checkbox"]:checked+label:before {
    border: 1px solid #ef4bbc;
    content: "";
    height: 20px;
    left: 0;
    position: absolute;
    top: 0;
    width: 20px;
    border-radius: 5px;
}

.custom-checkbox [type="checkbox"]:not(:checked)+label:after {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
}

.custom-checkbox [type="checkbox"]:not(:checked)+label:after,
.custom-checkbox [type="checkbox"]:checked+label:after {
    color: #fff;
    content: "\f00c";
    font-size: 14px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 0px;
    left: 0px;
    line-height: 1.45;
    padding: 1px 2px 2px 3px;
    transition: all 0.2s ease 0s;
    background-color: #ef4bbc;
    width: 20px;
    height: 20px;
    border-radius: 5px;
}

.custom-checkbox [type="checkbox"]:not(:checked)+label,
.custom-checkbox [type="checkbox"]:checked+label {
    cursor: pointer;
    padding-left: 30px;
    position: relative;
    font-weight: 400;
    /* text-transform: capitalize; */
}


/*	CUSTOM check CSS START	*/


/*	CUSTOM RADIO CSS START	*/

.radio-btn-small {
    display: inline-block;
    margin-right: 15px;
    padding: 0;
    position: relative;
    padding-left: 30px;
    margin-top: 3px;
}

.radio-btn-small:last-child {
    margin-right: 0;
}

input[type="radio"] {
    display: none;
}

input[type="radio"]+label {
    font-size: 14px;
    margin-bottom: 0;
    cursor: pointer;
    font-weight: 400;
}

input[type="radio"]+label span {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 2px 8px 0 0;
    vertical-align: middle;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0px;
    border: 1px solid #ef4bbc;
    background-color: #fff;
    border-radius: 100px;
}

input[type="radio"]:checked+label span:after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    background-color: #ef4bbc;
    top: 3px;
    left: 3px;
    border-radius: 100px;
}

input[type="radio"]:checked+label span {
    background-color: #fff;
}

input[type="radio"]:checked+label {
    color: #282828;
}


/*========================================================================
					bootstrap select box over
==========================================================================*/

.bootstrap-select.open>.dropdown-toggle.btn-default:hover,
.bootstrap-select.open>.dropdown-toggle.btn-default:focus {
    background-color: #fff;
}

.bootstrap-select>.dropdown-toggle {
    border: 1px solid #ababab;
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option,
.bootstrap-select.btn-group .dropdown-toggle .fas {
    color: #555;
}


/*========================================================================
					bootstrap select box over
==========================================================================*/


/*home_css_start*/

.navbar {
    padding-top: 20px;
    padding-bottom: 20px;
}

.navbar-light .navbar-nav .nav-link {
    color: #000000;
    font-size: 13px;
    /* text-transform: uppercase; */
    font-weight: 600;
    padding: 0px 5px;
    /* margin-top: 10px; */
}

.navbar-light .navbar-nav .main_btn {
    min-width: 145px;
    line-height: 40px;
    font-size: 14px;
    margin-right: 10px;
}

.navbar-brand {
    padding-top: 0px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: #ef4bbc;
}

.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
    color: #ef4bbc;
}

.nav-scroll .top_menu_home .navbar-light .navbar-nav .nav-link:hover,
.nav-scroll .top_menu_home .navbar-light .navbar-nav .nav-link:focus {
    color: #ef4bbc;
}


/*----------------*/

.top_menu {
    position: relative;
}

.nav_bar_ctm .navbar-brand {
    position: relative;
}

.home_banner {
    margin-bottom: 40px;
}

.in_content {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    margin-top: 87px;
}

.banner_text {
    color: #fff;
    text-align: left;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.banner_text .container {
    padding-left: 100px;
}

.banner_text h1 {
    font-weight: 800;
    /* text-transform: uppercase; */
    margin-bottom: 15px;
    font-size: 35px;
}

.banner_text p {
    font-weight: 500;
    line-height: 27px;
    max-width: 650px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    font-size: 50px;
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 9;
}

.home_about_sec {
    margin-bottom: 40px;
}

.web_title {
    font-weight: 800;
    color: #000;
    font-size: 30px;
}

.home_about_sec .web_title {
    margin-bottom: 10px;
}

.web_title span {
    color: #ef4bbc;
}

.main_btn {
    border: none;
    border-radius: 0;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
    text-align: center;
    /* text-transform: uppercase; */
    touch-action: manipulation;
    transition: all .3s ease-in-out;
    vertical-align: middle;
    white-space: nowrap;
    position: relative;
    background-image: linear-gradient(to right, #b989ff, #f347b7) !important;
    min-width: 160px;
    line-height: 45px;
    border-radius: 20px;
}

.main_btn:hover {
    background-image: linear-gradient(to left, #b989ff, #f347b7) !important;
    color: #FFF;
}

.navbar-light .navbar-nav .nav-item:last-child a {
    margin-right: 0px;
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 7;
}

.section_title h1 {
    font-size: 30px;
    font-weight: bold;
    line-height: 28px;
    color: #343434;
    /* text-transform: uppercase; */
    margin: 0;
    padding: 20px 0;
    /*background-image: url(../images/section-title-bg.png);*/
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 10px;
}

.events_box {
    width: 100%;
    border-radius: 7px;
    overflow: hidden;
    display: inline-block;
    margin-bottom: 30px;
    padding-bottom: 20px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.22);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.22);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.22);
}

.events_box img {
    width: 100%;
    height: 220px;
}

.events_box_data {
    position: relative;
    padding: 0px 15px;
}

.events_box_data>a {
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    display: inline-block;
    margin: 15px 0px 0px 0px;
    color: #292929;
    width: 335px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.events_box_data span {
    width: 100%;
    display: inline-block;
    color: #292929;
}

.events_date {
    position: absolute;
    top: 20px;
    right: 15px;
}

.events_date_btn {
    margin-top: 15px;
}

.past_events_sec {
    margin-top: 0px;
}

.reviews_home {
    background: url(../images/reviews_home_banner.jpg) no-repeat;
    height: 500px;
    width: 100%;
    display: inline-block;
}

.reviews_home .section_title {
    padding-top: 40px;
}

.reviews_home .section_title h1 {
    background-image: none;
}

.testimonial_blog {
    width: 100%;
    display: inline-block;
    background-color: #FFF;
    padding: 25px 30px;
    -webkit-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 15%);
    -moz-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 15%);
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 15%);
    border-radius: 7px;
}

.testimonial_slider .owl-carousel .owl-stage-outer .item {
    padding: 15px;
}

.testimonial_blog p {
    margin-bottom: 0px;
    color: #212121;
}

.testimonial_blog a {
    font-size: 18px;
    color: #ef4bbc;
    font-weight: 600;
    text-decoration: none;
    margin: 20px 0px;
    display: inline-block;
    width: 100%;
}

.testimonial_user {
    width: 83px;
    height: 83px;
    margin: 0px auto;
}

.testimonial_blog img {
    width: 83px;
    height: 83px;
    border-radius: 50%;
}

.testimonial_slider .owl-theme .owl-nav .owl-prev,
.testimonial_slider .owl-theme .owl-nav .owl-next {
    display: none;
}

.footer_sec {
    background-color: #272727;
    padding: 30px 0px;
}

.social_media_icon {
    position: relative;
    margin: 20px 0px;
}

.social_media_icon_title {
    font-size: 15px;
    color: #FFF;
    display: inline-block;
    position: relative;
    margin-right: 50px;
}

.social_media_icon_title:after {
    position: absolute;
    display: block;
    width: 30px;
    height: 1px;
    background: #ef4bbc;
    content: "";
    right: -40px;
    top: 10px;
}

.social_media_icon>a {
    width: 40px;
    height: 40px;
    border: 1px solid #FFF;
    font-size: 18px;
    line-height: 40px;
    display: inline-block;
    border-radius: 50%;
    color: #FFF;
    margin-right: 10px;
}

.social_media_icon>a:hover {
    color: #fff;
    border-color: #ef4bbc;
    background: #ef4bbc;
}

.footer_address {
    color: #dbdbdb;
    font-size: 15px;
    line-height: 25px;
    display: inline-block;
    margin-top: 20px;
}

.footer_link {
    margin-top: 30px;
}

.footer_link ul li {
    display: inline-block;
    margin-right: 15px;
}

.footer_link ul li>a {
    font-size: 15px;
    color: #FFF;
    /* text-transform: uppercase; */
}

.footer_link ul li>a:hover {
    color: #ef4bbc;
}


/*login_css_start*/

.in_content_with_footer {
    margin-bottom: 70px;
}

.in_banner {
    background: url(../images/sub_banner.jpg) no-repeat;
    padding: 70px 0px;
}

.in_banner h1 {
    font-size: 30px;
    font-weight: bold;
    color: #343434;
    /* text-transform: uppercase; */
}

.login_box {
    margin-top: 50px;
}

.login_box h2 {
    font-size: 24px;
    color: #272727;
    /* text-transform: uppercase; */
    font-weight: 600;
    margin-bottom: 20px;
}

.login_bg {
    background-color: #efefef;
    padding: 20px;
}

.forgot_pass {
    float: right;
    text-align: right;
    color: #ef4bbc;
}

.forgot_pass:hover {
    color: #000;
}

.social_media_login {
    float: right;
    text-align: right;
}

.shop_social ul li {
    display: inline-block;
    margin: 0px 5px;
}

.shop_social ul li a {
    display: inline-block;
    width: 42px;
    height: 42px;
    line-height: 42px;
    color: #FFF;
    border-radius: 50%;
    font-size: 20px;
    text-align: center;
}

.shop_social ul li .facebook_shop {
    background-color: #3b5998;
    border: 1px solid #3b5998;
}

.shop_social ul li .facebook_shop:hover {
    background-color: transparent;
    border: 1px solid #3b5998;
    color: #3b5998;
}

.shop_social ul li .twitter_shop {
    background: #79c8ed;
    border: 1px solid #79c8ed;
}

.shop_social ul li .twitter_shop:hover {
    background-color: transparent;
    border: 1px solid #79c8ed;
    color: #79c8ed;
}

.shop_social ul li .google_shop {
    background: #e66262;
    border: 1px solid #e66262;
}

.shop_social ul li .google_shop:hover {
    background-color: transparent;
    border: 1px solid #e66262;
    color: #e66262;
}

.register_box .login_bg {
    background-color: transparent;
    border: 1px solid #cfcfcf;
}


/*login_css_end*/

.create_events_sec {
    margin-top: 20px;
    margin-bottom: 40px;
}

.events_main_img {
    width: 100%;
}

.create_events_data h2 {
    font-size: 30px;
    font-weight: bold;
    line-height: 28px;
    color: #343434;
    /*text-transform: uppercase;*/
    margin: 0;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 10px;
}

.create_events_data a {
    color: #ef4bbc;
    font-size: 16px;
    font-weight: 600;
    /* text-transform: uppercase; */
    margin-top: 10px;
}

.create_events_data a i {
    font-size: 22px;
    padding-left: 5px;
    vertical-align: top;
}

.create_events_data a:hover {
    color: #000;
}

.attend_events_sec,
.how_it_work_sec {
    margin: 40px 0px;
    width: 100%;
    display: inline-block;
}

.how_it_work_sec h2 {
    margin-bottom: 30px;
}

.upcoming_events_sec {
    margin-top: 30px;
}

.view_attend_events_main {
    width: 100%;
    border-radius: 7px;
    overflow: hidden;
    display: inline-block;
    -webkit-box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 22%);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.22);
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 22%);
    padding-bottom: 20px;
    margin-top: 40px;
}

.view_attend_events_main img {
    width: 100%;
}

.view_attend_events_main .events_date {
    position: relative;
    top: 0px;
    right: 0px;
    margin-top: 10px;
}

.venu_info ul li {
    display: inline-block;
    position: relative;
    margin-top: 10px;
    margin-right: 50px;
    margin-bottom: 20px;
}

.venu_icon {
    position: absolute;
    top: 0px;
    font-size: 20px;
    color: #ef4bbc;
}

.venu_info_data {
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    font-weight: bold;
    /* text-transform: uppercase; */
    color: #000;
}

.venu_info_data span {
    font-weight: normal;
    text-transform: none;
    width: auto;
    display: block;
    color: #292929;
}

.add_attend_events_main {
    width: 100%;
    border-radius: 7px;
    overflow: hidden;
    display: inline-block;
    -webkit-box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 22%);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.22);
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 22%);
    margin-top: 40px;
    padding: 20px 15px 0px 15px;
}

.product_single_qty {
    display: inline-block;
}

.product_single_qty a {
    display: inline-block;
    border: 1px solid #dadada;
    height: 47px;
    vertical-align: top;
    line-height: 47px;
    float: left;
    width: 35px;
    text-align: center;
    color: #ef4bbc;
}

.product_single_qty a:first-child {
    border-right: 0px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.product_single_qty a:last-child {
    border-left: 0px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.product_single_qty .form-control {
    display: inline-block;
    width: 60px;
    text-align: center;
    float: left;
    border-radius: 0px;
}

.adults_main {
    margin-bottom: 20px;
}

.adults_lbl {
    vertical-align: top;
    line-height: 47px;
    padding-right: 15px;
    font-weight: bold;
}

.gift_img {
    margin-bottom: 20px;
    position: relative;
}

.gift_img h4 {
    position: relative;
    font-size: 15px;
    font-weight: bold;
    /* text-transform: uppercase; */
    color: #000;
    width: 100%;
    display: inline-block;
    margin-bottom: 15px;
}

.cack_img {
    width: 80px;
    height: 80px;
    border-radius: 7px;
    overflow: hidden;
    vertical-align: middle;
}

.cack_img img {
    width: 100%;
}

.cack_name {
    vertical-align: top;
    line-height: 47px;
    padding-right: 15px;
    font-weight: bold;
    color: #2a2a2a;
    font-size: 16px;
    position: absolute;
    top: 45px;
    z-index: 1;
    width: 100%;
    left: 0;
    padding-left: 100px;
}

.cack_name span {
    color: #ef4bbc;
}

.ctm_radio_btn .ctm_radio_btn_label {
    font-weight: 500;
    width: 100%;
}


/*.ctm_radio_btn .radio-btn-small{
  width: 100%;
  margin-bottom:10px;
}*/

.add_attend_events_main .main_btn {
    margin-bottom: 20px;
}

.create_event_main {}

.file-placeholder {
    position: relative;
    cursor: pointer;
    width: 100%;
}

.file-placeholder input[type=file] {
    position: absolute;
    z-index: 3;
    top: 34px;
    left: 0;
    width: 100%;
    height: 45px;
    opacity: 0;
    cursor: pointer;
    padding-right: 75px;
}

.file-placeholder .file-browse {
    height: 47px;
    box-shadow: none;
    border: 1px solid #dadada;
    border-radius: 20px;
    font-size: 14px;
    color: #747c84;
    margin-bottom: 20px;
    background-color: transparent;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.file-placeholder .file-browse .file-browse-txt {
    display: block;
    float: left;
    line-height: 45px;
    width: 100%;
    padding-left: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 85px;
}

.file-placeholder .file-browse .file-browse-txt.hasValue {
    background-color: #333333;
}

.file-placeholder .file-browse .browse {
    display: block;
    width: auto;
    background-color: #ef4bbc;
    color: #FFF;
    height: 45px;
    line-height: 45px;
    padding: 0 15px;
    position: absolute;
    right: 0px;
}

.create_event_title {
    margin-bottom: 20px;
}

.create_event_title h3 {
    font-size: 22px;
    color: #272727;
    font-weight: 600;
    margin-bottom: 0px;
}

.pad_right .form-control {
    padding-right: 38px;
}

.form_icon {
    position: absolute;
    font-size: 18px;
    color: #ef4bbc;
    top: 46px;
    right: 15px;
}

textarea.form-control {
    height: auto;
}

.create_event_main .adults_main {
    margin-top: 25px;
}

.create_event_main .radio-btn-small {
    margin-top: 10px;
}

.profile_image {
    width: 131px;
    height: 131px;
    border-radius: 50%;
    display: block;
    margin-bottom: 30px;
    display: inline-block;
    float: left;
}

.profile_image img {
    border-radius: 50%;
    width: 131px;
    height: 131px;
}

.edit_profile_icon {
    display: inline-block;
    float: right;
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 15px;
    color: #FFF;
    background-color: #ef4bbc;
    border: 1px solid #ef4bbc;
    border-radius: 50%;
    margin-top: 30px;
}

.edit_profile_icon:hover {
    background-color: transparent;
    color: #ef4bbc;
}

.notification_list ul li {
    margin-bottom: 25px;
    display: block;
    width: 100%;
    border-bottom: 1px solid #dadada;
    padding-bottom: 15px;
}

.notification_list ul li:last-child {
    border-bottom: none;
    padding-bottom: 0px;
}

.notification_icon {
    width: 45px;
    height: 45px;
    text-align: center;
    background-color: #ef4bbc;
    line-height: 45px;
    font-size: 20px;
    color: #FFF;
    border-radius: 50px;
    position: absolute;
}

.notification_text {
    position: relative;
    padding-left: 60px;
}

.notification_text h4 {
    font-size: 16px;
    color: #292929;
    font-weight: 600;
    margin-bottom: 5px;
}

.notification_text p {
    margin-bottom: 0px;
}

.notification_text span {
    color: #c1c1c1;
    margin-top: 2px;
}

.contact_main {
    margin-top: 40px;
}

.contact_icon {
    width: 70px;
    height: 70px;
    display: inline-block;
    border-radius: 50%;
    background-image: linear-gradient(to right, #b989ff, #f347b7) !important;
    line-height: 70px;
}

.contact_icon img {
    vertical-align: middle;
    margin-top: -5px;
}

.contact_info {
    margin-top: 15px;
}

.contact_info h2 {
    font-size: 20px;
    color: #292929;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact_info_call p {
    margin-bottom: 0px;
}

.contact_info_form {
    margin-top: 40px;
}

.accordion-button {
    font-weight: 500;
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #ff18c4;
    background-color: #fff4fc;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
    border: none;
    color: transparent;
}

.profile_blog .edit_profile_icon {
    text-align: center;
}

.create_event_main .iti--allow-dropdown input,
.create_event_main .iti--allow-dropdown input[type=text],
.create_event_main .iti--allow-dropdown input[type=tel],
.create_event_main .iti--separate-dial-code input,
.create_event_main .iti--separate-dial-code input[type=text],
.create_event_main .iti--separate-dial-code input[type=tel] {
    padding-left: 102px;
}


/*.create_event_main .iti__country-list{
  padding-top: 20px;
}*/

label.error {
    margin-bottom: 0px;
}


/*.mobile_error label.error{
  position: absolute;
  margin-bottom:20px;
}

.iti{
  margin-bottom: 20px;
}*/

.footer_address a {
    color: #ef4bbc;
}

.footer_address a:hover {
    color: #FFF;
}