:root {
    /*--primary-color: #7b5ba6; !* Define variable *!*/
    --primary-color: #06065c;
    --primary-color-hover: #7b5ba6;
    --primary-color-active: #7b5ba6;
    --text-light: #9d9d9d;
    --green-color: #16ab39;
    --red-color: #db2828;
}

body {
    position: relative;
    background-color: white;
    color: #393939;
}

.ui.inverted.menu {
    background-color: var(--primary-color);
}

body.pushable > .pusher {
    background-color: #ffffff;
}

a,
a:active,
a:hover,
a:focus {
    color: inherit;
}

.title {
    font-size: 21px;
    font-weight: 700;
    line-height: 30px;
    color: #363535;
}

.login.container {
    min-height: 100%;
    max-width: 600px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    width: 100%;
}

.login.container .wrapper {
    width: 100%;
    margin-left: 0;
}

.login.container .header {
    text-align: center;
    margin-bottom: 20px;
}

.login.container .steps .text {
    text-align: center;
    color: var(--text-light);
    font-size: 11px;
    margin-bottom: 15px;
}

.login.container .steps {
    margin-bottom: 25px;
}

.login.container .steps .progress {
    background: #fff;
    height: 5px;
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.login.container .steps .progress:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #58de91;
}

.login.container .action {
    margin-top: 30px;
}

.login.container .action > button,
.login.container .action > a {
    margin-top: 15px;
}

.login.container .action > a.register {
    text-align: center;
    display: block;
    /*color: var(--red-color);*/
    text-decoration: underline;
}

label {
    cursor: pointer !important;
}

.ui.primary.label {
    background: var(--primary-color);
    color: #fff;
}

.box {
    padding: 20px;
    border-radius: 3px;
    background: #fff;
}

.box.padded {
    padding: 30px;
}

.login.container h2 {
    margin-bottom: 8px;
}

.login .box.padded > p {
    color: var(--text-light);
}

.ui.form .field {
    margin-bottom: 20px;
}

.checkbox.tab {
    display: inline-block;
    margin-bottom: 8px;
}

.ui.form input:not([type]),
.ui.form input[type="date"],
.ui.form input[type="datetime-local"],
.ui.form input[type="email"],
.ui.form input[type="number"],
.ui.form input[type="password"],
.ui.form input[type="search"],
.ui.form input[type="tel"],
.ui.form input[type="time"],
.ui.form input[type="text"],
.ui.form input[type="file"],
.ui.form input[type="url"] {
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

.checkbox.tab input[type="checkbox"] {
    display: none;
}

.checkbox.tab label {
    display: inline-block;
    background: #f2f2f2;
    color: #575757;
    border-radius: 50px;
    padding: 10px 20px;
    transition: all 0.3s;
}

.checkbox.tab input[type="checkbox"]:checked + label {
    background: var(--primary-color);
    color: #fff;
}

.login .box .total {
    text-align: center;
    font-weight: bold;
    color: #575757;
    margin-bottom: 25px;
}

header {
    background: #eff0f1;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-box-shadow: 0px 10px 20px -20px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 10px 20px -20px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 10px 20px -20px rgba(0, 0, 0, 0.15);
}

header .logo img {
    height: 50px;
}

header .search {
    position: absolute;
    top: 50%;
    left: calc(50%);
    width: 980px;
    transform: translate(calc(-50%), -50%);
}

header .search .search-input {
    width: 676px;
    position: relative;
}

header .search .search-input input {
    width: 100%;
    border-radius: 3px;
    background: #f6f8fc;
    outline: 0;
    border: 0;
    padding: 15px 15px;
}

header .search .search-input #add-post-btn {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: #fff;
    border-radius: 100px;
    padding: 5px 20px;
    cursor: pointer;
    padding-right: 10px;
}

header .search .search-input #add-post-btn i {
    margin-left: 15px;
}

header .search .search-input input::placeholder {
    color: #afb7bf;
    font-size: 12px;
}

header .access {
    display: flex;
    align-items: center;
}

header .access .ui.circular.button.notification-menu {
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff0f1;
}


header .access .ui.circular.button.profile {
    height: 48px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff0f1;
    margin: 0;
}

header .access .ui.dropdown > i,
header .access .ui.circular.button > i {
    color: var(--primary-color);
}

header .access .ui.button.green {
    font-size: 14px;
    font-weight: 400;
    padding: 15px 20px;
    margin-right: 15px;
}

nav {
    padding: 45px 0;
    margin-top: 120px;
    width: 240px;
    position: fixed;
    z-index: 100;
    left: 20px;
    top: 0;
    /* height: 100%; */
    overflow-y: auto;
    background-color: #06065c;
    border-radius: 10px;
    font-size: 13px;
}

nav > a {
    white-space: nowrap;
    padding: 6px 35px;
    display: flex;
    color: inherit;
    vertical-align: middle;
    /* border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    transition: background 0.3s; */
    margin-bottom: 8px;
    cursor: pointer;
    color: white;
}

nav > a:hover {
    color: #ed1c24;
    font-weight: 800;
}

nav > a.active {
    color: #ed1c24;
    font-weight: 800;
}

nav > a:hover svg path {
    fill: #ed1c24;
}

nav > a.active svg path {
    fill: #ed1c24;
}

nav > a > i {
    cursor: pointer;
    vertical-align: top;
    display: inline-block;
    color: white;
    width: 30px !important;
    text-align: left !important;
}

nav > a.active > i {
    color: #ed1c24;
}

nav > a:hover > i {
    color: #ed1c24;
}

nav > a > span {
    padding-left: 15px;
    cursor: pointer;
    display: inline-block;
    white-space: normal;
}

.mobile-nav {
    cursor: pointer;
    display: none;
    padding: 0 20px;
}

.body-container {
    padding: 0 60px;
    padding-top: 120px;
    margin: auto;
    /*padding-left: 220px;*/
    padding-left: 300px;
    box-sizing: content-box;
}

.wrapper {
    width: 980px;
    margin: auto;
    position: relative;
}

.wrapper.main {
    /*margin-left: 220px;*/
}

.wrapper {
    display: flex;
    justify-content: center;
}

.wrapper > form {
    width: 100%;
}

.wrapper > .content {
    flex-grow: 1;
    width: 676px;
    padding-bottom: 80px;
    height: 100%;
}

.wrapper > .content > .center-content {
    width: 100%;
    max-width: 676px;
    margin: auto;
}

.wrapper > .rail.grow {
    width: 285px;
    pointer-events: none;
}

.ui.dropdown.profile {
    padding: 0;
}
.ui.dropdown.profile img {
    /* width: 100%; */
    height: 100%;
    object-position: center;
    object-fit: cover;
    border-radius: 500px;
    /* overflow: hidden; */
}

header .access .ui.dropdown .username {
    font-size: 15px;
    font-weight: 700;
    margin-left: 15px;
    width: 100%;
    white-space: nowrap;
}

.ui.dropdown > .menu {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}
.ui.dropdown > .menu > .item {
    display: flex;
    justify-content: space-between;
    /*padding-left: 8px !important;*/
    /*padding-right: 8px !important;*/
    color: #393939;
    font-size: 12px;
    font-weight: normal;
}

.ui.dropdown > .menu > .item > i {
    margin-right: 0 !important;
}

.ui.top.left.pointing.dropdown > .menu {
    min-width: 250px !important;
}

.ui.top.left.pointing.dropdown > .menu.large {
    min-width: 300px !important;
}

.ui.sidebar > a {
    padding: 15px;
    color: #fff;
    display: flex;
    vertical-align: middle;
    gap: 5px;
    
}

.ui.sidebar > a:first-child {
    margin-top: 30px;
}

.button {
    display: inline-block;
    border-radius: 50px;
    padding: 5px 20px;
    font-size: 13px;
    transition: all 0.3s !important;
    cursor: pointer;
}

.button.green {
    background: var(--green-color);
    color: #fff;
}

.button.red {
    background: var(--red-color);
    color: #fff;
}

.button.green.outline {
    border: 1px var(--green-color) solid;
    background: none;
    color: var(--green-color);
}

.button.red.outline {
    border: 1px var(--red-color) solid;
    background: none;
    color: var(--red-color);
}

.button.icon.left > i {
    margin-left: 0;
    margin-right: 15px;
}

.button.icon > i {
    margin-left: 15px;
    margin-right: 0;
}

.button.outline {
    border: 1px var(--primary-color) solid;
}

.button.outline.primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.button.primary:focus {
    background-color: var(--primary-color) !important;
}

.button.primary.view-ticket:focus  {
    background-color: white !important;
}


/* .button.primary.view-ticket:focus {
    background-color: white !important;
} */

.ui.toggle.checkbox input:focus:checked ~ .box:before,
.ui.toggle.checkbox input:focus:checked ~ label:before {
    background-color: var(--primary-color) !important;
}

.feed {
    border-radius: 3px;
    margin-bottom: 25px;
    -webkit-box-shadow: 0px 10px 20px -20px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 10px 20px -20px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 10px 20px -20px rgba(0, 0, 0, 0.15);
}

.feed .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feed .header .more {
    font-size: 12px;
    color: #393939;
    text-align: right;
    white-space: nowrap;
}

.feed .header .profile,
.profile.wrapper {
    width: 100%;
    display: flex;
    align-items: center;
}

.feed .header .profile > .icon,
.profile.wrapper > .icon {
    position: relative;
    margin-right: 15px;
    width: 48px;
    height: 48px;
}

.profile.wrapper {
    padding-left: 0;
}
.profile.wrapper .details {
    width: calc(100% - 48px);
}

.feed .header .profile > .icon .badge,
.profile.wrapper > .icon .badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: #58de91;
    color: #fff;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    vertical-align: center;
    align-items: center;
    text-align: center;
}

.feed .header .profile.small > .icon,
.profile.wrapper.small > .icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.feed .header .profile > .icon img,
.profile.wrapper > .icon img {
    /* width: 100%; */
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 500px;
    object-position: center;
}

.feed .header .profile.small > .icon .badge,
.profile.wrapper.small > .icon .badge {
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
}

.feed .header .profile > .icon .badge > i,
.profile.wrapper > .icon .badge > i {
    font-size: 10px;
    line-height: 10px;
    margin: 0;
}

.feed .header .profile .details h5,
.profile.wrapper .details h5 {
    margin-bottom: 0;
    font-size: 13px;
}

.feed .header .profile .details .expertise,
.profile.wrapper .details .expertise {
    font-size: 12px;
    color: #575757;
}

.feed .body {
    padding: 20px 0;
    font-size: 15px;
    line-height: 24px;
}

.feed .body .description {
    /*word-break: break-all;*/
}

.feed .action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.feed .action .button.primary {
    margin-left: 0;
    margin-right: auto;
}

.feed .action .button.active {
    opacity: 0.7;
    color: var(--green-color);
    border: var(--green-color) 1px solid;
}

.feed .action .button.disabled {
    cursor: not-allowed;
}

.feed .action .button.active i {
    color: var(--green-color);
}

.feed .action .button:hover {
    opacity: 0.8;
}

/* .button i.thumbs, */
.feed .action .button i {
    color: var(--primary-color);
}

/* .button i.thumbs:not(.active), */
.feed .action .button i.thumbs:not(.active) {
    color: var(--text-light);
}

.feed .comment-wrapper .load-more {
    margin-top: 15px;
    cursor: pointer;
    text-decoration: underline;
}

.ui.right.rail {
    left: 720px;
    right: 0;
    width: 320px;
    padding: 0;
    margin: 0;
}

/* .ui.right.rail {
    left: auto;
    right: -65px;
    width: 330px;
    right: 0;
    width: 265px;
    padding: 0;
    margin: 0;
} */

/* .ui.right.rail{
    left: auto;
    right: 100px;
    width: 400px;
    padding: 0;
    margin: 0;
} */

.post-submission-popup textarea,
.discussion-post-submission-popup input,
.discussion-post-submission-popup textarea {
    width: 100%;
    border: 0;
    resize: none;
    outline: 0;
    margin-top: 25px;
}

.post-submission-popup input {
    width: 100%;
    border: 0;
    resize: none;
    outline: 0;
    margin-top: 25px;
    border-bottom: 1px #ebebeb solid;
    padding: 15px 0;
}

.post-submission-popup input::placeholder {
    font-size: 18px;
}

.post-submission-popup textarea::placeholder {
    font-size: 18px;
}

.text-count {
    text-align: right;
    font-size: 14px;
    color: var(--text-light);
}

.ui.container.login .text-count,
.profile-settings .text-count,
form.business .text-count {
    text-align: right;
    font-size: 10px;
    color: var(--text-light);
}

.post-submission-popup .option {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* border: 1px #ebebeb solid; */
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.post-submission-popup .option .label {
    margin-left: 0;
    margin-right: auto;
    font-weight: bold;
}

.post-submission-popup .option .connection,
.post-submission-popup .option .gallery {
    margin-left: 15px;
    font-size: 18px;
    color: #ccc;
}

.post-submission-popup .option .connection input {
    display: none;
}

.post-submission-popup .option .connection input:checked + label {
    color: var(--primary-color);
}

.post-submission-popup .option .gallery input {
    display: none;
}

.galleries .gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 4/3;
}

.ui.modal.tiny .icon.close {
    top: 1.0535rem;
    right: 1rem;
    color: rgba(0, 0, 0, 0.87);
}

#image-preview img,
#product-image-preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1/1;
    border-radius: 5px;
    margin: 3px;
}

.ui.modal.connection .content .description {
    margin-top: 15px;
    font-size: 12px;
    line-height: 18px;
}

.profile-wrapper {
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #fff;
}

.profile-wrapper .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 5/2;
}

.profile-wrapper .cover {
    position: relative;
    display: block;
}

.profile-wrapper .cover .edit-profile-button {
    position: absolute;
    display: block;
    right: 15px;
    top: 15px;
    border-radius: 50px;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 18px;
}

.profile-wrapper .cover .edit-profile-button i {
    margin-right: 15px;
}

.profile-wrapper .cover .edit-empower-button {
    position: absolute;
    display: block;
    right: 15px;
    top: 65px;
    border-radius: 50px;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 18px;
}

.profile-wrapper .cover .edit-empower-button i {
    margin-right: 15px;
}

.profile-wrapper .content {
    display: flex;
    flex-wrap: nowrap;
}

.profile-wrapper .cover .edit,
.profile-wrapper .content .image .edit {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px;
    /*transform: translate(-50%, -50%);*/
    z-index: 99;
    text-align: center;
    display: flex;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    /*opacity: 0.5;*/
    color: #fff;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 25px;
}

.profile-wrapper .content .image .edit {
    color: #000;
}

.profile-wrapper .cover .edit i,
.profile-wrapper .content .image .edit i {
    margin: auto;
}

.profile-wrapper .cover .edit > span,
.profile-wrapper .content .image .edit > span {
    display: none;
    /*display: block;*/
    width: 100%;
}

.profile-wrapper .content .image {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 15px;
    border: 5px #fff solid;
    border-radius: 100px;
    margin-top: -50px;
    overflow: hidden;
}

.profile-wrapper .content .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.profile-wrapper .content .details {
    width: 100%;
    padding-left: 10px;
    flex: 1;
}

.profile-wrapper .content .details .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    padding-right: 8px;
}

.profile-wrapper .content .details .header h1 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0;
}

.profile-wrapper .content .details .header h3 {
    font-size: 13px;
    font-weight: normal;
    color: var(--text-light);
    margin: 10px 0;
}

.profile-wrapper .content .details .header h1 .badge {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #009dff;
    color: #fff;
    border-radius: 100px;
    line-height: 18px;
    text-align: center;
    font-size: 12px;
    vertical-align: text-top;
}

.profile-wrapper .content .details .header h1 .badge i {
    margin-right: 0;
    margin-top: 1px;
}

.profile-wrapper .content .details .header .member-name-code-wrapper {
    display: flex;
    gap: 8px;
}

.profile-wrapper .content .details .header .member-id {
    background-color: var(--primary-color);
    color: white;
    padding: 2px 11px;
    font-size: 10px;
    border-radius: 15px;

}

@media (max-width: 548px) {
    .profile-wrapper .content .image {
        width: 110px;
        height: 110px;
    }

    .profile-wrapper .content .details .header .member-id {
        font-size: 8px;
    }
}

.profile-wrapper .content .details .mini-section .items {
    display: flex;
    margin-bottom: 12px;
}

.profile-wrapper .content .details .business-link {
    margin-top: 15px;
}

.profile-wrapper .content .details .business-link .items {
    display: flex;
    margin-bottom: 12px;
}

.profile-wrapper .content .details .business-link .items > .item i {
    width: 30px;
    color: var(--primary-color);
    font-size: 18px;
    vertical-align: text-bottom;
}

.profile-wrapper .content .details .business-link .items > .item img {
    height: 18px;
    margin-left: 12px;
}

.profile-wrapper .content .details .mini-section .items > .item {
    margin-right: 12px;
    color: #393939;
    font-size: 11px;
}

.profile-wrapper .content .details .mini-section .items > .item i {
    width: 30px;
    color: var(--primary-color);
    font-size: 18px;
    vertical-align: text-bottom;
}

.profile-wrapper .content .details .mini-section .friends img {
    width: 26px;
    height: 26px;
    border-radius: 26px;
    overflow: hidden;
    border: 1px #fff solid;
    margin-left: -10px;
}

.profile-wrapper .content .details .mini-section .friends img:first-child {
    margin-left: 0;
}

.profile-wrapper .navigation {
    margin-top: 15px;
}

.profile-wrapper .navigation a {
    display: inline-block;
    /*color: var(--primary-color);*/
    color: #575757;
    padding: 12px 20px;
    padding-left: 0;
    margin: 0 15px;
    margin-left: 0;
    font-weight: bold;
}

.profile-wrapper .navigation a:hover {
    color: var(--primary-color);
    text-decoration: underline;
    /* border-bottom: 3px var(--primary-color) solid; */
}

.profile-wrapper .navigation a.active {
    color: var(--primary-color);
    text-decoration: underline;
    /* border-bottom: 3px var(--primary-color) solid; */
}

.overview .item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.overview .item i {
    height: auto;
    width: 20px;
    text-align: left;
}

.overview .education {
    margin-bottom: 15px;
}

.overview .education h4 {
    margin-bottom: 0;
}

.overview .education .school {
    color: var(--text-light);
}

.business-list {
    display: flex;
    flex-wrap: nowrap;
}

.business-list .image {
    width: 80px;
    height: 80px;
    border-radius: 3px;
    overflow: hidden;
}

.business-list .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.business-list .details {
    padding-left: 20px;
    width: calc(100% - 113px);
}

.business-list .details h3 {
    padding-top: 5px;
    font-size: 15px;
    margin-bottom: 0px;
}

.business-list .details .field {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 13px;
}

.business-list .details-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 767px) {
    .business-list .details-wrapper {
        display: block;
    }

    .business-list .details {
        width: 100%;
        text-align: justify;
    }

    .business-list .button-wrapper {
        margin-top: 20px;
        padding-left: 20px;
    }
}

.business-list .button-wrapper {
    display: flex;
    align-items: flex-end;
}

.business-list .button-wrapper button {
    background-color: white;
    white-space: nowrap;
}

.business-list .button-wrapper button:focus {
    color: white;
}

.business-list .details .bio {
    /*color: var(--text-light);*/
    font-size: 13px;
}

#add-friend-btn:hover {
    background: var(--green-color);
    color: #fff;
    border-color: var(--green-color);
}

.business-products {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    padding-top: 25px;
}

.business-products > .item {
    width: 50%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.business-products > .item .image {
    position: relative;
    margin: 0 -20px;
    margin-top: -20px;
    margin-bottom: 8px;
}

.business-products > .item .content {
    position: relative;
}

.business-products > .item .content > .dropdown {
    position: absolute;
    top: 0px;
    right: -20px;
    width: 20px;
    height: 20px;
    /*line-height: 20px;*/
    /*border-radius: 50px;*/
    /*background: var(--primary-color);*/
    /*color: #fff;*/
}

.business-products > .item .image > .dropdown i {
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    margin: 0;
    text-align: center;
}
.business-products > .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 2 / 1;
}

.business-products > .item .content h3 {
    font-size: 15px;
    margin-top: 0;
    margin-bottom: 5px;
}

.business-products > .item .description {
    font-size: 13px;
}

.business-products > .item small {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
}

.ui.modal.comment .content .comment-wrapper .load-more a {
    text-decoration: underline;
    cursor: pointer;
}

.ui.modal.comment .content .comment-wrapper .ui.comments .comment {
    border-top: 1px #ebebeb solid;
    padding-top: 20px;
    padding-bottom: 5px;
}

.ui.modal.comment .content .comment-wrapper .ui.comments .comment:first-child {
    border-top: 0;
    padding-top: 0;
}

.ui.modal.comment .content.scrolling {
    position: relative;
    padding-bottom: 100px;
}

.ui.modal.comment .content.scrolling .ui.reply.form {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: #fff;
    border-top: 1px #ebebeb solid;
}

.search .search-input {
    position: relative;
}

.search .search-input input {
    width: 100%;
    border-radius: 8px;
    background: #fff;
    outline: 0;
    border: 0;
    padding: 20px 25px;
    -webkit-box-shadow: 0px 10px 30px -15px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 10px 30px -15px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 10px 30px -15px rgba(0, 0, 0, 0.15);
    margin-bottom: 15px;
}

.search .search-input .button {
    position: absolute;
    top: 13px;
    right: 13px;
}

/* feed ending */
.end-indicator {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
    color: #ccc;
    font-size: 12px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.event-wrapper .event.item {
    display: block;
    background-color: #eff0f1;
    border-radius: 10px;
}

.event-wrapper .event.ticket.item {
    display: flex;
}

.event-wrapper .event.ticket.item .image {
    width: 200px;
}

.event-wrapper .event.ticket.item .details {
    padding-left: 15px;
}

.event-wrapper .event.ticket.item .details h3 {
    overflow: auto;
    display: block;
    height: auto;
}

.event-wrapper .event.item .image {
    display: block;
    position: relative;
    aspect-ratio: 5/3;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.event-wrapper .event.item .image .label {
    position: absolute;
    top: 0;
    right: 0;
    background: #08bb50cc;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 25px;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    font-weight: 700;
    padding: 3px 30px;
    z-index: 99;
}

.event-wrapper .event.item .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    /* aspect-ratio: 5/3;
    border-radius: 3px; */
    position: absolute;
    top: 0;
}

.background-image-blur {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: block;
    /* width: 100%; */
    height: 100%;
    filter: blur(10px);
}

.event-wrapper .event.item .details {
    padding: 15px 20px;
}

.event-wrapper .event.item .details h3 {
    font-size: 15px;
    line-height: 21px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 42px;
}

.event-wrapper .event.item .details .extra {
    display: flex;
}

.event-wrapper .event.item .details .extra .calendar-wrapper {
    width: 40px;
}

.event-wrapper .event.item .details .extra .calendar-wrapper .calendar {
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
}

.event-wrapper .event.item .details .extra .calendar-wrapper .calendar .month {
    background: #ff5a5a;
    color: #fff;
    font-size: 12px;
    line-height: 18px;
    font-weight: bold;
}

.event-wrapper .event.item .details .extra .calendar-wrapper .calendar .date {
    background: #f7f7f7;
    font-size: 14px;
    line-height: 22px;
    font-weight: bold;
}

.event-wrapper .event.item .details .extra .info {
    padding-left: 10px;
    flex-grow: 1;
}

.event-wrapper .event.item .details .extra .info .location {
    font-weight: bold;
    font-size: 12px;
}

.event-wrapper .event.item .details .extra .info .location i {
    color: #9d9d9d;
    font-size: 10px;
    line-height: 19px;
    height: 19px;
    vertical-align: top;
}

.event-wrapper .event.item .details .extra .info .category {
    font-style: italic;
    color: #9d9d9d;
    font-size: 11px;
}

.event-wrapper .tickets .item {
    display: flex;
}

.event-wrapper .ticket-wrapper {
    margin-bottom: 30px;
    padding-top: 30px;
    border-bottom: 1px #ebebeb solid;
}

.event-wrapper .ticket-wrapper:last-child {
    border-bottom: 0;
}

.ui.breadcrumb {
    margin-bottom: 25px;
}

.ui.breadcrumb a {
    color: var(--primary-color);
}

.ui.breadcrumb .section.active {
    font-weight: normal;
}

.event-create.banner-image > label {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 5px;
}
.event-create.banner-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    aspect-ratio: 5/3;
    border-radius: 5px;
    max-width: 300px;
    border: 1px dashed #ccc;
}

.event-create.banner-image .description {
    background: #fff;
    margin-bottom: 25px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 15px;
}

.event-create.banner-image .channel-banner {
    max-width: none;
    width: 100%;
    max-height: 468px;
}

.event.action.button {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-bottom: 25px;
    padding: 0;
    flex-wrap: wrap;
}

.event.action.button > *:first-child {
    margin-right: auto;
    margin-left: 0;
}

.event-ticket-wrapper h3 {
    font-size: 15px;
    line-height: 21px;
    font-weight: bold;
    margin: 0;
}

.event-ticket-wrapper .add-button h4 {
    margin: 0;
}

.event-ticket-wrapper .add-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    margin-top: 25px;
}

.event-ticket-wrapper .tickets,
.event-ticket-wrapper .coupons {
    padding-top: 20px;
}

.event-ticket-wrapper .tickets .item,
.event-ticket-wrapper .coupons .item {
    padding: 15px 5px;
    border-top: 1px #ebebeb solid;
    border-bottom: 1px #ebebeb solid;
}

.event-ticket-wrapper .tickets .item:last-child,
.event-ticket-wrapper .coupons .item:last-child {
    border-bottom: 0;
}

.event-ticket-wrapper .tickets .title,
.event-ticket-wrapper .coupons .title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.event-ticket-wrapper .tickets .title h4, 
.event-ticket-wrapper .coupons .title h4 {
    margin: 0;
    padding-right: 8px;
}

.event-ticket-wrapper .tickets .labels,
.event-ticket-wrapper .coupons .labels {
    margin-right: 0;
    margin-left: auto;
}

.event-ticket-wrapper .tickets .time,
.event-ticket-wrapper .coupons .time {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-ticket-wrapper .tickets .time .action, 
.event-ticket-wrapper .coupons .time .action {
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
    margin-left: auto;
    margin-right: 0;
}

.ui.toggle.checkbox input:checked ~ label:before {
    background-color: var(--primary-color) !important;
}

/* EVENT PAGE DETAILS CSS */
.event-details-wrapper .cover-image {
    width: 100%;
    height: 550px;
    position: relative;
    overflow: hidden;
}

.event-details-wrapper .cover-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: absolute;
    top: 0;
    /* aspect-ratio: 5/3; */
    border-radius: 3px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.event-details-wrapper .box:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.event-details-wrapper h1 {
    font-size: 21px;
    line-height: 30px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 15px;
    padding: 0 5px;
}

.event-details-wrapper h2 {
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 30px;
    padding: 0 15px;
}

.event-details-wrapper .extra {
    display: flex;
    align-items: center;
}

.event-details-wrapper .calendar-wrapper {
    width: 60px;
}

.event-details-wrapper .calendar-wrapper {
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
}

.event-details-wrapper .calendar-wrapper .calendar .month {
    background: #ff5a5a;
    color: #fff;
    font-size: 15px;
    line-height: 24px;
    font-weight: bold;
}

.event-details-wrapper .calendar-wrapper .calendar .date {
    background: #f7f7f7;
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
}

.event-details-wrapper .extra .info {
    padding-left: 10px;
    flex-grow: 1;
}

.event-details-wrapper .extra .info .location {
    font-weight: bold;
    font-size: 15px;
}

.event-details-wrapper .extra .info .location i {
    color: #9d9d9d;
    font-size: 13px;
    line-height: 19px;
    height: 19px;
    vertical-align: top;
}

.event-details-wrapper .extra .info .category {
    font-style: italic;
    color: #9d9d9d;
    font-size: 13px;
    margin-top: 5px;
}

.event-details-wrapper .box {
    margin-bottom: 30px;
}

.event-details-wrapper .box > .details i {
    color: var(--primary-color);
}

.event-details-wrapper .box > .details {
    margin-top: 10px;
    border-top: 1px solid #eeeeee;
    padding-top: 15px;
}

.event-details-wrapper .box > .details .event-details {
    display: flex;
}

.event-details-wrapper .box > .details .event-details .icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 3px;
    background-color: #f2f4f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-details-wrapper .box > .details .event-details .icon-wrapper i {
    margin: 0;
    height: auto;
}

.event-details-wrapper .box > .details .event-details .info {
    width: calc(100% - 36px);
    padding-left: 10px;
    line-height: 24px;
}

.event-details-wrapper .box > .details .event-details .info h3 {
    margin: 0;
    font-size: 15px;
    line-height: 21px;
}

.event-details-wrapper .box > .details .event-details .info .info-small {
    margin-bottom: 0px;
    margin-top: 0px;
    padding-bottom: 0px;
    color: #999999;
    font-size: 12px;
    font-weight: normal;
    padding-top: 5px;
}

.event-details-wrapper .box > .share-wrapper {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.event-details-wrapper .box > .share-wrapper .title {
    font-weight: bold;
    margin-right: 15px;
}

.event-details-wrapper .box > .share-wrapper .icons {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.event-details-wrapper .box > .share-wrapper .icons a {
    cursor: pointer;
    background: #fff;
    border: 1px #ebebeb solid;
    border-radius: 50px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    margin: 0 5px;
}

.event-details-wrapper .box > .share-wrapper .icons button.get-link-btn {
    cursor: pointer;
    background: #fff;
    color: var(--primary-color);
    border: none;
    margin-left: auto;
    margin-right: 0;
}

.event-details-wrapper .box > .share-wrapper .icons button.get-link-btn i {
    margin-right: 12px;
}

.event-details-wrapper .box.description {
    padding-top: 20px;
}

.event-details-wrapper .box.description .event-description,
.event-details-wrapper .box.description .event-description p {
    line-height: 24px;
}

.event-details-wrapper .box.description .event-description a {
    color: var(--primary-color);
}

.event-details-wrapper .box.description .ui.tab {
    /*padding: 0 15px;*/
    margin-top: 20px;
}

.event-details-wrapper .box.description img {
    width: 100%;
    max-width: 100%;
}

.purchase-action-wrapper {
    border-top: 1px #ebebeb solid;
    border-bottom: 1px #ebebeb solid;
    margin-top: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.purchase-action-wrapper .ticket-wrapper > .ticket {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.purchase-action-wrapper .ticket-wrapper > .ticket .balance {
    margin-right: 0;
    margin-left: auto;
    padding: 0 15px;
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.purchase-action-wrapper .ticket-wrapper > .ticket .title h4 {
    font-size: 15px;
}

.purchase-action-wrapper .ticket-wrapper > .ticket .title h4 > span {
    font-size: 12px;
    font-weight: normal;
}

.purchase-action-wrapper .ticket-wrapper > .ticket .actions {
    display: flex;
    align-items: center;
}

.purchase-action-wrapper .ticket-wrapper > .ticket .actions button {
    width: 28px;
    height: 28px;
    border: 0;
    background: var(--primary-color);
    color: #fff;
    border-radius: 36px;
    cursor: pointer;
}

.purchase-action-wrapper .ticket-wrapper > .ticket .actions button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

/*.purchase-action-wrapper .ticket-wrapper > .ticket .actions button:first-child{*/
/*    border-top-left-radius: 5px;*/
/*    border-bottom-left-radius: 5px;*/
/*}*/

/*.purchase-action-wrapper .ticket-wrapper > .ticket .actions button:last-child{*/
/*    border-top-right-radius: 5px;*/
/*    border-bottom-right-radius: 5px;*/
/*}*/

.purchase-action-wrapper .ticket-wrapper > .ticket .actions input {
    width: 30px;
    height: 36px;
    text-align: center;
    border: 0;
    /*border-top: 1px #ebebeb solid;*/
    /*border-right: 0;*/
    /*border-left: 0;*/
    /*border-bottom: 1px #ebebeb solid;*/
}

.organizer-wrapper .content {
    display: flex;
}

.organizer-wrapper .content .image {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
}

.organizer-wrapper .content .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.organizer-wrapper .content .details {
    width: calc(100% - 60px);
    flex-grow: 1;
    padding-left: 15px;
}

.organizer-wrapper .content .details .header h3 {
    font-size: 18px;
    line-height: 24px;
    margin: 0 auto;
    flex-grow: 1;
}

.organizer-wrapper .content .details .header h4 {
    font-size: 13px;
    line-height: 21px;
    margin: 0 auto;
    flex-grow: 1;
    font-weight: normal;
    color: var(--text-light);
}

.organizer-wrapper .content .details .business-link {
    margin-top: 15px;
}

.organizer-wrapper .content .details .business-link .items {
    display: flex;
    margin-bottom: 12px;
}

.organizer-wrapper .content .details .business-link .items > .item i {
    width: 30px;
    color: var(--primary-color);
    font-size: 18px;
    vertical-align: text-bottom;
}

.organizer-wrapper .content .details .business-link .items > .item img {
    height: 18px;
    margin-left: 12px;
}

/* END OF EVENT DETAILS PAGE */

.event-info-wrapper {
    border-top: 1px solid #eeeeee;
}

.event-info-wrapper .header {
    position: relative;
    font-size: 17px;
    margin: 20px;
    color: black;
    font-weight: bold;
    text-align: left;
    padding-left: 50px;
}

.event-info-wrapper .icon-wrapper {
    text-align: center;
    color: white;
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background-color: #f2f4f7;
    position: absolute;
    left: 0px;
    top: 5px;
}

.event-info-wrapper .icon-wrapper > i {
    padding-top: 5px;
}

.event-info-wrapper .info {
    margin-bottom: 0px;
    margin-top: 0px;
    padding-bottom: 0px;
    color: #666666;
    font-size: 14px;
    font-weight: normal;
    padding-top: 5px;
}

.event-info-wrapper .info-small {
    margin-bottom: 0px;
    margin-top: 0px;
    padding-bottom: 0px;
    color: #999999;
    font-size: 12px;
    font-weight: normal;
    padding-top: 5px;
}

.getTicketBtn {
    display: block;
    cursor: pointer;
    font-size: 12px;
    border-radius: 3px;
    background: none;
    /*box-shadow: 0px 0px 5px var(--green-color);*/
    /*background-color: var(--green-color);*/
    color: var(--green-color);
    border: 1px var(--green-color) solid;
    font-weight: bold;
    padding: 12px 15px;
    /*max-width: 300px;*/
    /*margin: 0 auto;*/
    width: 100%;
    text-transform: uppercase;
    /*border: none;*/
    /*color: white;*/
}

.getTicketBtn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    background: #fbfbfb;
    border: 1px #ebebeb solid;
    color: #ccc;
}

.profilebox .ticket {
    color: #333333;
    font-weight: bold;
    font-size: 14px;
    line-height: 21px;
    display: block;
    padding: 10px;
    margin: 0px;
    padding-top: 0px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 130px;
    position: relative;
}

.profilebox .ticket .soldout {
    font-weight: bold;
    color: red;
}

.soldout {
    font-weight: bold;
    color: red;
}

.profilebox .ticket .coming-soon {
    color: teal;
    font-weight: bold;
    white-space: nowrap;
}

.profilebox .ticket .ended {
    color: red;
    font-weight: bold;
    white-space: nowrap;
}

.profilebox .ticket .price {
    color: #999999;
    font-weight: bold;
    font-size: 16px;
    margin-right: 10px;
}

.profilebox .ticket .price.free {
    color: var(--primary-color);
    font-weight: bold;
}

.profilebox .ticket .price.left {
    color: orange;
    font-weight: bold;
}

.profilebox .ticket .minus-btn {
    cursor: pointer;
    touch-action: manipulation;
    text-align: center;
    padding: 3px;
    padding-top: 4px;
    width: 26px;
    height: 26px;
    border-radius: 360px;
    position: absolute;
    top: 8px;
    right: 70px;
    font-size: 12px;
    background-color: #666663b3;
    border: none;
    color: white;
}

.profilebox .ticket .plus-btn {
    cursor: pointer;
    touch-action: manipulation;
    text-align: center;
    padding: 3px;
    padding-top: 4px;
    width: 26px;
    height: 26px;
    border-radius: 360px;
    position: absolute;
    top: 8px;
    right: 15px;
    font-size: 12px;
    background-color: var(--primary-color);
    border: none;
    color: white;
}

.profilebox .ticket .plus-btn:disabled,
.profilebox .ticket .minus-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.profilebox .ticket .quantity {
    cursor: default;
    color: #666666;
    text-align: center;
    padding: 3px;
    padding-top: 5px;
    width: 26px;
    height: 26px;
    border-radius: 360px;
    position: absolute;
    top: 6px;
    right: 43px;
    font-size: 14px;
    border: none;
    pointer-events: none;
}

.profilebox .group-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.profilebox .group-wrapper > img {
    position: absolute;
    left: 20px;
    height: 30px;
    width: auto;
}

.profilebox .group-wrapper > p {
    margin-left: 70px;
    padding-top: 5px;
    font-size: 14px;
    color: #666666;
}

.profilebox .group-wrapper > i {
    position: absolute;
    right: 20px;
    top: 10px;
    color: #666666;
}

.profilebox.share .share-btn {
    margin-left: 10px;
    border-radius: 360px;
    width: 34px;
    height: 34px;
    text-align: center;
    padding: 0px;
    padding-top: 3px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
}

.profilebox.share .share-btn > i {
    font-size: 16px;
}

.profilebox.share .get-link-btn {
    float: right;
    position: relative;
    border-radius: 360px;
    height: 34px;
    text-align: center;
    font-size: 12px;
    background-color: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    padding: 0 12px;
}

.profilebox.share .get-link-btn > i {
    font-size: 16px;
    margin-right: 10px;
}

.profilebox .profileheading {
    margin-top: 40px;
    margin-bottom: 0;
    padding-bottom: 20px;
    cursor: pointer;
}

.profilebox.info {
    background-color: #fff;
    border: 1px solid #dddddd;
    box-shadow: 0px 0px 5px #eeeeee;
    border-radius: 15px;
}

#offerheadline {
    padding: 0 20px;
    padding-bottom: 10px;
    margin: 10px 0;
}

#map-container {
    margin: 20px 0;
    height: 400px;
    padding: 10px;
}

#google-map {
    height: 300px;
    width: 100%;
}

.profilebox .description {
    padding: 20px;
    line-height: 1.8;
}

hr {
    border-color: rgba(34, 36, 38, 0.15);
}

.ui.modal.summary .header {
    text-align: center;
}

.ui.modal.summary .header .sub-header {
    color: #666666;
    font-size: 12px;
    font-weight: 400;
    padding-top: 10px;
    line-height: 1.6;
}

.ui.modal.summary .total {
    display: flex;
    justify-content: flex-end;
}

.ui.modal.summary .total table {
    font-weight: bold;
    font-size: 20px;
    line-height: 18px;
    width: 100%;
}

.ui.modal.summary .total table tr {
    height: 40px;
}

.ui.modal.summary .total table td {
    text-align: end;
    padding-right: 20px;
}

.ui.modal.summary .total table td.value {
    text-align: center;
    color: var(--primary-color);
    width: 1%;
    white-space: nowrap;
}

.business-category-list {
    /*margin: 25px -5px;*/
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
}

.business-category-list .column {
    width: 25%;
    padding-right: 15px;
}

.business-category-list a {
    display: block;
    /*padding: 5px 15px;*/
    /*border-radius: 20px;*/
    margin: 10px 0;
    /*margin-bottom: 15px;*/
    /*color: #fff;*/
    /*background: var(--primary-color);*/
    font-size: 13px;
}

.business-category-list a.label {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    margin: 15px 0;
    margin-bottom: 15px;
    color: #fff;
    background: var(--primary-color);
    font-size: 13px;
}

.load-more-btn-wrapper {
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

.load-more-btn-wrapper button:focus {
    color: white !important;
    border-color: white !important;
}

.load-more-btn-wrapper .end {
    color: #666666;
    font-size: 21px;
    padding-top: 20px;
}

.business-category-featured {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    padding-top: 25px;
    /*margin: 0 -15px;*/
}

.business-category-featured a {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;

    width: 25%;
    padding: 0 15px;
    margin-bottom: 15px;
}

.business-category-featured a .box {
    position: relative;
    width: 100%;
    min-height: 150px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
}

.business-category-featured a .box:before {
    width: 100%;
    height: 100%;
    z-index: 0;
    /*background: rgb(123,91,166);*/
    /*background: linear-gradient(0deg, rgba(123,91,166,0) 0%, rgba(123,91,166,1) 100%);*/
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: 0;

    background: rgb(0, 0, 0);
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0) 30%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.business-category-featured a .box h2 {
    font-size: 18px;
    position: relative;
    z-index: 1;
    white-space: break-spaces;
    overflow-wrap: break-word;
    color: #fff;
}

.business-category-featured a .box h3 {
    font-size: 15px;
    font-weight: normal;
}

.my-tickets .ui.card {
    width: 100%;
}

.my-tickets .ui.card img {
    width: 100%;
}

.my-tickets .ui.card .title {
    font-size: 25px;
    font-weight: bold;
    line-height: 1.4;
}

.my-tickets .ui.card .sub-title {
    font-size: 18px;
    color: #999999;
    text-align: center;
    text-decoration: underline;
}

.my-tickets .ui.card .info {
    padding: 20px 20px;
    font-size: 16px;
    color: #999999;
}

.my-tickets .ui.card .button-wrapper {
    text-align: center;
}

.my-tickets .ui.card .button-wrapper a {
    margin-top: 20px;
}

.ui.button.primary.enable-input-btn {
    padding: 0 10px;
    margin-left: 5px;
}

.profilebox.info.people {
    padding: 25px;
}

.profilebox.info.people img {
    margin-right: 1em;
    width: 3.5em;
    height: 3.5em;
}

.profilebox.info.people span {
    font-size: 16px;
    font-weight: bold;
}

.profilebox.info.people .ui.avatar.image {
    object-fit: cover;
    object-position: center;
}

.ticket-input {
    width: 60px;
}

.ticket-datetime-input {
    width: 160px;
}

.menu.large.connection-dropdown,
#notification-dropdown {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    width: 300px !important;
}

.connection-dropdown .item,
#notification-dropdown .item {
    padding: 15px 8px !important;
    padding-left: 12px !important;
    justify-content: flex-start;
}

.connection-dropdown .item img,
#notification-dropdown .item img {
    width: 30px;
    height: 30px;
    max-height: none;
    margin: 0 !important;
}

.connection-dropdown .item .message,
#notification-dropdown .item .message {
    padding-left: 10px;
    font-size: 12px;
    white-space: normal;
    line-height: 1.2;
    width: 100%;
}

.connection-dropdown .item .message .time,
#notification-dropdown .item .message .time {
    font-size: 12px;
    color: #999999;
    padding-top: 5px;
    font-weight: normal;
}

#notification-dropdown .item.unread {
    /*background-color: rgba(0,255,0, 0.05);*/
}

#notification-dropdown .item .status {
    width: 20px;
    height: 100%;
    padding-top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#notification-dropdown .item .status > span.unread {
    display: inline-block;
    height: 8px;
    width: 8px;
    background: var(--primary-color);
    border-radius: 10px;
}

#notification-dropdown .item.active {
    font-weight: normal !important;
}

.notification-menu .floating.ui.red.label {
    top: 8px;
    left: 42px;
}

.dashboard-card {
    min-height: 160px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: nowrap;
    font-weight: bold;
}

.dashboard-card.purple {
    background-color: #f1f0fe;
    color: #4644a4;
}

.dashboard-card.green {
    background-color: #eafaf0;
    color: #24734f;
}

.dashboard-card.yellow {
    background-color: #fff9e6;
    color: #947932;
}

.dashboard-card .header {
    font-size: 15px;
}

.dashboard-card .info {
    font-size: 48px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.dashboard-card .icon-wrapper {
    padding: 5px;
    border-radius: 50%;
    display: flex;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
}

.dashboard-card .icon-wrapper i {
    font-size: 18px;
}

.dashboard-card.purple .icon-wrapper {
    background-color: #d9d9fb;
}

.dashboard-card.green .icon-wrapper {
    background-color: #ceead5;
}

.dashboard-card.yellow .icon-wrapper {
    background-color: #fdefc0;
}

/* timeline */

.timeline {
    margin-bottom: 20px;
}

.timeline .title {
    font-size: 21px;
    font-weight: bold;
    padding-bottom: 35px;
}

.timeline .step {
    display: flex;
    position: relative;
    border-bottom: 1px solid #858383;
}

.timeline .step:last-child {
    border: none;
}

/* .timeline .step:after {
    content: "";
    position: absolute;
    left: 15px;
    top: 32px;
    height: 0;
    width: 2px;
    background-color: #d8d8d8;
}

.timeline .step:not(:last-child):after {
    margin-top: 14px;
    height: 100%;
} */

.onboarding-step .number,
.timeline .number {
    width: 32px;
    height: 32px;
    background-color: #d8d8d8;
    border-radius: 50%;
    border: 2px solid #d8d8d8;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    margin-right: 0;
    margin-top: 28px;
}
.onboarding-step .number.completed,
.timeline .number.completed {
    background-color: #58de91;
    border-color: #58de91;
}
.onboarding-step .number svg,
.timeline .number svg {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.onboarding-step .number svg path,
.timeline .number svg path {
    fill: white;
}

.timeline .info {
    background-color: white;
    width: 100%;
    margin: 15px 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 8px;
    align-items: flex-start;
}

/* .timeline .info .header-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
} */

.timeline .info .header {
    font-size: 15px;
    font-weight: bold;
}

.timeline .info .function a {
    color: #ed1c24;
    font-size: 14px;
    padding-right: 5px;
    font-weight: 700;
    width: 100%;
}

.timeline .info .function i {
    color: #9d9d9d;
}

.timeline .referrers {
    padding-top: 20px;
    width: 100%;
    /*display: flex;*/
    /*flex-wrap: wrap;*/
}

.timeline .referrers .column {
    padding-right: 10px;
    padding-top: 10px;
}

.timeline .cp-invite-link {
    cursor: pointer;
}

.timeline i {
    cursor: pointer;
}

.pt-0 {
    padding-top: 0;
}

/* timeline  */

.upcoming-events {
    overflow-x: hidden;
}

.upcoming-events .ui.card {
    width: 300px;
    margin-right: 30px;
}

.upcoming-events .ui.card .image {
    height: 175px;
}

.upcoming-events .ui.card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.upcoming-events .ui.card .content {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 0;
}

.upcoming-events .ui.card .content .header {
    font-size: 13px;
    font-weight: bold;
}

.upcoming-events .ui.card .content .meta {
    font-size: 11px;
    color: #393939;
    padding-top: 5px;
}

.upcoming-events .ui.card .content a i {
    color: #58de91;
    font-size: 15px;
    margin-right: 8px;
}

.upcoming-events .ui.card .content a {
    font-size: 11px;
}

.upcoming-events .swiper-container {
    padding: 10px;
}

.dashboard-header {
    font-size: 15px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 20px;
}

.rail-header {
    font-size: 21px;
    font-weight: bold;
    padding-top: 1rem;
}

.box.channels {
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: bold;
    background-color: #d9d9d9;
    border-radius: 10px;
    padding: 30px;
}

.box.channels .header {
    font-size: 15px;
    font-weight: 700;
}

.box.channels .description {
    font-weight: 400;
    font-size: 12px;
    padding-top: 10px;
    color: #363535;
}

.box.channels .info {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}

.box.channels .info .icon-wrapper {
    display: flex;
    align-items: center;
}

.box.channels .info .icon-wrapper img {
    width: 15px;
    height: 15px;
}

.box.channels .info .icon-wrapper i {
    color: var(--primary-color);
}

.box.channels .info .icon-wrapper span {
    margin-left: 10px;
    font-size: 12px;
    color: #363535;
    font-weight: 500;
}

.interests .card {
    margin-right: 0;
    width: 100%;
}

.interests .card .image {
    width: 100%;
    height: 160px;
}

.interests .card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.interests .card .header {
    font-size: 15px;
    font-weight: bold;
    min-height: 40px;
}

.interests .card .description {
    font-size: 12px;
    color: #575757;
}

.interests .card .info {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}

.interests .card .info .icon-wrapper {
    display: flex;
    align-items: center;
}

.interests .card .info .icon-wrapper i {
    color: var(--primary-color);
}

.interests .card .info .icon-wrapper span {
    margin-left: 10px;
    font-size: 12px;
    color: #575757;
    font-weight: 500;
}

.interests .card .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
}

.box.other-interests .header {
    font-size: 12px;
    font-weight: bold;
}

.box.other-interests .description {
    font-size: 12px;
    color: #575757;
    padding-top: 10px;
}

.box.other-interests .icon-wrapper {
    padding-top: 10px;
}

.box.other-interests .icon-wrapper i {
    color: var(--primary-color);
    font-size: 12px;
}

.box.other-interests .icon-wrapper span {
    margin-left: 5px;
    color: #575757;
    font-size: 12px;
}

.box.other-interests hr {
    margin: 20px 0;
}

.featured-events.box {
    padding: 0;
    margin-bottom: 1rem;
}

.box.margin-bottom {
    margin-bottom: 1rem;
}

.featured-events.box .image {
    height: 175px;
}

.featured-events.box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.featured-events.box .content {
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 0;
    padding: 10px 20px;
}

.featured-events.box .content .header {
    font-size: 13px;
    font-weight: bold;
}

.featured-events.box .content .meta {
    font-size: 11px;
    color: #393939;
    padding-top: 5px;
}

.featured-events.box .content a i {
    color: #58de91;
    font-size: 15px;
    margin-right: 8px;
}

.featured-events.box .content a {
    font-size: 11px;
}

.connection-notification {
    width: 100%;
}

.view-channels {
    color: #ed1c24;
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
    text-align: center;
}

p.lifetime-package {
    color: red;
    margin-bottom: 15px !important;
}

.dataTables_wrapper > .dataTables_length,
.dataTables_wrapper > .dataTables_filter {
    margin-bottom: 30px;
}

.member.signup {
    /* margin: 0 auto; */
    padding: 35px;
    padding-bottom: 50px;
    text-align: center;
    background: #fff;
    border: 1px #ebebeb solid;
}

.member.signup h3 {
    color: var(--primary-color);
    font-size: 24px;
}

.member.signup p {
    font-size: 15px;
    line-height: 24px;
}

/* .compare {
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 3px 30px var(--primary-color);
    border: 1px #ebebeb solid;
    overflow-x: auto;
} */

.compare table {
    width: 100%;
}

.compare tr td {
    padding: 15px 8px;
    text-align: center;
    border-bottom: 1px #ebebeb solid;
}

.compare tr:last-child td {
    border-bottom: 0;
}

.compare tr td i.check {
    color: #58de91;
}

.compare tr td i.times {
    color: #bfbfbf;
}

.effectuator,
.free-member {
    font-weight: bold;
    font-size: 15px;
}
.compare .price {
    font-weight: bold;
    font-size: 18px;
    color: #58de91;
}
.effectuator {
    color: var(--primary-color);
}

.compare .sign-up {
    cursor: pointer;
    display: block;
    background: #58de91;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    /* margin: -20px; */
    padding: 15px;
    margin-top: 10px;
    text-align: center;
}
.compare .sign-up:hover {
    color: #fff;
}

.order-wrapper > .item {
    max-width: 700px;
    margin: 20px auto;
    border: 1px #ebebeb solid;
    border-radius: 5px;
    padding: 20px 30px;
    text-align: left;
}

.order-wrapper > .item .title,
.order-wrapper > .item .date {
    display: flex;
    justify-content: space-between;
}

.order-wrapper > .item .title h4 {
    margin-bottom: 15px;
}

.order-wrapper > .item .title .price {
    color: #000;
    font-weight: normal;
    font-size: 12px;
}

.order-wrapper > .item .download {
    margin-top: 20px;
    text-align: right;
}

.business-page-teams {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.business-page-teams .button {
    margin-left: 20px;
}

.business-page-teams h3 {
    margin-bottom: 0;
}

#sold-tickets-table tfoot {
    font-weight: bold;
}

#sold-tickets-table tfoot td {
    padding-top: 20px;
}

.icon.primary {
    color: var(--primary-color);
}

.benefit-details-wrapper .extra .icon-wrapper {
    padding-right: 15px;
    color: #7c7c7c;
    font-size: 12px;
}

.benefit-description {
    padding: 20px 15px;
}

.settlement-wrapper {
    padding: 0 20px;
}

.settlement-wrapper table .label {
    width: 50%;
    font-size: 14px;
    font-weight: bold;
}

.settlement-wrapper table .details {
    width: 50%;
    font-size: 17px;
    font-weight: 400;
    padding-top: 0;
    padding-bottom: 20px;
}

.settlement-wrapper table .details:first-child {
    display: flex;
    width: 100%;
}

.settlement-wrapper .ui.table tr td {
    border-top: 0px !important;
}

.red-color {
    color: red;
}

@media print {
    body#ticket .top-bar {
        display: none;
    }
    body#ticket {
        background-color: white;
    }
}

@media (min-width: 767px) {
    body#ticket div.leftticket {
        max-width: 650px;
        background-color: white;
        height: 300px;
        border-radius: 10px;
        padding: 25px;
        overflow: hidden;
        display: inline-block;
        border-left: 1px solid #000000;
        border-top: 1px solid #000000;
        border-bottom: 1px solid #000000;
    }

    body#ticket div.rightticket {
        display: inline-block;
        width: 250px;
        height: 300px;
        background-color: white;
        border-radius: 10px;
        padding: 25px;
        padding-top: 50px;
        border-top: 1px solid #000000;
        border-right: 1px solid #000000;
        border-bottom: 1px solid #000000;
        border-left: 1px dashed #000000;
        overflow: hidden;
    }

    body#ticket p.infotext {
        margin-top: 5px;
        font-size: 18px;
        color: black;
        font-weight: bold;
        line-height: 24px;
        margin-bottom: 10px;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        overflow: hidden;
        white-space: normal;
        line-break: normal;
    }

    body#ticket h1.tickettitle {
        white-space: normal;
        font-size: 18px;
        color: black;
        line-height: 25px;
        margin-top: 0px;
        margin-bottom: 0px;
        word-wrap: normal;
    }
}

@media (max-width: 767px) {
    body#ticket div.leftticket {
        background-color: white;
        border-radius: 10px;
        padding: 10px;
        padding-top: 20px;
        overflow: hidden;
        border-left: 1px solid #000000;
        border-right: 1px solid #000000;
        border-top: 1px solid #000000;
    }

    body#ticket div.rightticket {
        background-color: white;
        border-radius: 10px;
        padding: 25px;
        padding-top: 10px;
        border-left: 1px solid #000000;
        border-right: 1px solid #000000;
        border-bottom: 1px solid #000000;
        border-top: 1px dashed #000000;
        overflow: hidden;
    }

    body#ticket p.infotext {
        margin-top: 5px;
        font-size: 16px;
        color: black;
        font-weight: bold;
        line-height: 22px;
        margin-bottom: 10px;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        overflow: hidden;
        white-space: normal;
        line-break: normal;
    }

    body#ticket h1.tickettitle {
        white-space: normal;
        font-size: 16px;
        color: black;
        line-height: 22px;
        margin-top: 0px;
        margin-bottom: 0px;
        word-wrap: normal;
    }

    .profilebox .description img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 1280px) {
    .ui.toggle.buttons {
        /* flex-direction: column; */
        margin-bottom: 25px;
    }
}

.my-event-table-box table .text-center {
    text-align: center;
}

/* Member benefit */

/* EVENT PAGE DETAILS CSS */
.benefit-details-wrapper .cover-image {
    width: 100%;
    height: 468px;
    position: relative;
    overflow: hidden;
}

.benefit-details-wrapper .cover-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: absolute;
    top: 0;
    /* border-radius: 3px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; */
}

.benefit-details-wrapper .details .description {
    padding-bottom: 10px;
}

.benefit-details-wrapper .details .price-wrapper {
    display: flex;
    padding-bottom: 10px;
}

.benefit-details-wrapper .details .price-wrapper .price {
    color: red;
    font-weight: 600;
}

.benefit-details-wrapper .details .price-wrapper .discount {
    text-decoration: line-through;
    padding-left: 10px;
}

.benefit-details-wrapper .details .extra {
    display: flex;
    align-items: center;
}

.benefit-details-wrapper .details .extra .redeem-btn:last-child {
    margin-left: auto;
}

.benefit-wrapper .event.item {
    display: block;
}

.benefit-wrapper .benefit.item .image {
    display: block;
    position: relative;
    aspect-ratio: 5/3;
    overflow: hidden;
}

.benefit-wrapper .benefit.item .image .label {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #58de91;
    border-radius: 3px;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    line-height: 12px;
    padding: 5px 8px;
    z-index: 99;
}

.benefit-wrapper .benefit.item .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    /* aspect-ratio: 5/3;
    border-radius: 3px; */
    position: absolute;
    top: 0;
}

.benefit-wrapper .benefit.item .details {
    padding: 8px;
}

.benefit-wrapper .benefit.item .details h3 {
    font-size: 15px;
    line-height: 21px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.benefit-wrapper .benefit.item .details .extra {
    display: flex;
}

.benefit-wrapper .benefit.item .details .extra .info {
    padding-left: 10px;
    flex-grow: 1;
}

.benefit-wrapper .benefit.item .details .description {
    padding-bottom: 10px;
}

.benefit-wrapper .details .benefit.item .price-wrapper {
    display: flex;
    padding-bottom: 10px;
}

.benefit-wrapper .details .benefit.item .price-wrapper .price {
    color: red;
    font-weight: 600;
}

.benefit-wrapper .details .benefit.item .price-wrapper .discount {
    text-decoration: line-through;
    padding-left: 10px;
}

.benefit-wrapper .details .benefit.item .price-wrapper span:last-child {
    margin-left: auto;
}

.organizer-wrapper .content.benefit .image {
    width: 50px;
    height: 50px;
    border-radius: 35px;
    overflow: hidden;
}

.onboarding-step-wrapper {
}

.onboarding-step-wrapper .name {
    user-select: none;
}

.onboarding-step-wrapper .name .label {
    margin-left: 10px;
}

.onboarding-step-wrapper .description {
    font-size: 12px;
    color: #999999;
    user-select: none;
    margin-bottom: 15px;
}

.onboarding-step-wrapper .custom-form-wrapper {
    margin: 25px 0;
}

.onboarding-step-wrapper .custom-form-wrapper .title {
    font-size: 16px;
    font-weight: bold;
    /* margin-bottom: 20px; */
}

.onboarding-step-wrapper .custom-form-wrapper .small-label {
    font-size: 12px;
    font-weight: bold;
    color: #999999;
    font-style: italic;
}

.onboarding-step-wrapper .calendly-wrapper {
    margin-top: 25px;
}

.onboarding-step-wrapper .calendly-wrapper .title {
    font-size: 16px;
    font-weight: bold;
}

.onboarding-step-wrapper .calendly-wrapper table td.label {
    font-weight: bold;
}

.onboarding-step-wrapper .required-text {
    color: red;
}

.custom-input label.title {
    font-size: 16px !important;
    padding-bottom: 15px;
}

.custom-input .add-input-btn {
    margin-bottom: 10px;
}

.ui.primary.label.custom-input-option {
    margin: 5px;
    background-color: var(--primary-color);
    color: white;
}

.event-custom-form .custom-form-wrapper {
    margin-bottom: 25px;
}

.event-custom-form .custom-form-wrapper .title {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 15px;
}

.create-private-channel-link-wrapper {
    color: #ed1c24;
    font-size: 14px;
    text-decoration: underline;
    font-weight: 700;
}

.private-channels .channel-wrapper {
    margin-top: 20px;
}

.private-channels .channel-wrapper .button-wrapper {
    text-align: end;
}

.business-tools > .column > .ui.card {
    width: auto;
    box-shadow: none;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 15px;
}

.business-tools > .column > .ui.card .image {
    margin-right: 20px;
}

.business-tools > .column > .ui.card .image .bt-image-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    overflow: hidden;
}

.business-tools > .column > .ui.card .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
    overflow: hidden;
    position: absolute;
    top: 0;
}

.business-tools > .column > .ui.card .title {
    display: block;
    /*display: flex;*/
    /*flex-direction: row;*/
    /*flex-wrap: nowrap;*/
    /*align-content: stretch;*/
    /*justify-content: flex-start;*/
    /*align-items: flex-start;*/
    margin-bottom: 8px;
}

.business-tools > .column > .ui.card .type {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    border-radius: 3px !important;
    z-index: 100;
    padding: 5px 8px;
    margin-right: 5px;
    font-size: 12px;
    line-height: 12px;
    vertical-align: text-bottom;
}

.business-tools > .column > .ui.card .categories a {
    color: var(--primary-color);
    margin-right: 3px;
}

.event-details-wrapper h1.tools {
    padding: 0;
    margin-top: 0;
}

.dashboard-top-banner-box {
    width: 100%;
    height: 220px;
    margin-bottom: 30px;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.ads {
    width: 100%;
    height: 220px;
    margin-bottom: 30px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    cursor: pointer;
}

.ads.middle {
    margin-top: 30px;
}

.dashboard-top-banner-box div {
    width: 50%;
}

.dashboard-top-banner-box .slogan {
    font-size: 21px;
    font-weight: 800;
    color: #06065c;
    margin-left: 100px;
    line-height: 25px;
}

.analytic-box-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
}

.analytic-box {
    border-radius: 10px;
    color: white;
    width: 32%;
    padding: 30px;
    /* margin-bottom: 10px; */
    margin: 10px 0px;
}

.analytic-box .icon {
    width: 25px;
    height: 22px;
    margin-bottom: 40px;
}

.analytic-box .icon img {
    width: 100%;
    height: 100%;
}

.analytic-box .info {
    font-size: 45px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: normal;
}

.analytic-box .description {
    font-size: 15px;
    font-weight: 400;
}

.analytic-box.visitor {
    background-color: #6f96d1;
}

.analytic-box.like {
    background-color: #344ead;
}

.analytic-box.new-member {
    background-color: #091f5b;
}

.box.channels .friends {
    margin-left: 10px;
}

.box.channels .friends img {
    width: 20px !important;
    height: 20px !important;
    border-radius: 26px;
    overflow: hidden;
    margin-left: -10px;
}

.box.channels .friends img:first-child {
    margin-left: 0;
}

.new-member-section {
    margin-top: 60px;
    position: relative;
}

.new-member-box-wrapper {
    margin-top: 30px;
}

.new-member-box-wrapper .swiper-slide {
    /* width: 33%; */
    width: auto;
    padding: 0 10px;
}

.new-member-box-wrapper .swiper-slide:first-child {
    /* padding-left: 0; */
}

.new-member-box-wrapper .swiper-slide:last-child {
    padding-right: 0;
}

.new-member-box-wrapper .swiper-slide .new-member-box {
    width: 100%;
    aspect-ratio: 9/9;
}

.new-member-box-wrapper .swiper-slide .new-member-box .image {
    width: 100%;
    height: 100%;
}

.new-member-box-wrapper .swiper-slide .new-member-box .image img {
    width: 100%;
    height: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.new-member-box-wrapper .swiper-slide .new-member-box .info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #eff0f1;
    min-height: 140px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.new-member-box-wrapper .swiper-slide .new-member-box .info .name {
    font-size: 15px;
    font-weight: 700;
    color: #363535;
}

.new-member-box-wrapper .swiper-slide .new-member-box .info .expertise {
    font-size: 12px;
    font-weight: 500;
    color: #363535;
}

.ui.button.dark-blue {
    background-color: #06065c;
    color: white;
}

.new-member-box-wrapper .swiper-slide .new-member-box .info .button {
    font-size: 10px;
    font-weight: 400;
    text-align: center;
    border-radius: 5px;
    width: 100%;
    margin-top: 10px;
}

.new-member-box-wrapper .swiper-container {
    overflow-x: hidden;
}

.new-member-section .swiper-button {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
}

.new-member-section .swiper-button .button-round {
    width: 40px;
    height: 40px;
    background-color: #d9d9d9;
    color: #858383;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.primary-hr {
    border: 1.3px solid #363535;
    margin: 50px 0;
}

.timeline .ui.progress {
    font-size: 5px;
    /* margin-bottom: 35px; */
}

/* .timeline .ui.progress .bar {
    background-color: #ed1c24;
    position: relative;
}

.timeline .ui.progress .bar .round-head {
    width: 22px;
    height: 22px;
    background-color: #ed1c24;
    border-radius: 50%;
    position: absolute;
    top: -7px;
    right: -7px;
}

.timeline .ui.progress .bar {
    transition: width 0.5s;
} */

.congrats-box {
    padding: 40px;
    border-radius: 10px;
    background-color: #363535;
    color: white;
}

.congrats-box .title {
    font-size: 15px;
    font-weight: 700;
    color: white;
    padding-bottom: 10px;
}

.congrats-box .description {
    font-size: 14px;
    font-weight: 400;
}

.btn-event {
    align-self: center;
    margin-left: auto;
}
.congrats-box a {
    font-size: 14px !important;
    font-weight: 400 !important;
    padding: 8px 25px !important;
}

.platform-feature-section {
    padding: 20px 0;
}

.platform-feature-section .description {
    font-size: 14px;
    font-weight: 400;
    padding-top: 10px;
}

.platform-feature-section a {
    color: #ed1c24;
    font-size: 14px;
    font-weight: 700;
}

.platform-feature-section .ui.grid .row {
    padding: 8px 0;
}

.platform-feature-section .ui.grid .row .column {
    padding: 0 8px;
}

.platform-feature-section .feature-box {
    background-color: #eff0f1;
    border-radius: 10px;
    padding: 20px 30px;
}

.platform-feature-section .feature-box .icon {
    width: 33px;
    height: 33px;
}

.platform-feature-section .feature-box .icon img {
    width: 100%;
    height: 100%;
}

.platform-feature-section .feature-box .info {
    padding-top: 15px;
}

.platform-feature-section .feature-box .info .header {
    font-size: 15px;
    font-weight: 700;
    color: #363535;
}

.platform-feature-section .feature-box .info .description {
    font-size: 12px;
    font-weight: 500;
    color: #363535;
    padding-top: 0;
}

.upcoming-events-section a.learn-more {
    color: #ed1c24;
    font-size: 14px;
    font-weight: 700;
}

.upcoming-events-section .event-wrapper {
    margin-top: 30px;
}

.faq-section .description {
    font-size: 14px;
    font-weight: 400;
    padding-top: 15px;
}

.faq-section .ui.menu {
    border: none;
}

.faq-section .ui.vertical.menu {
    box-shadow: none;
    margin-top: 50px;
}

.faq-section .ui.vertical.menu .item {
    margin-bottom: 15px;
    background-color: #eff0f1;
    border-radius: 10px;
    padding: 20px 35px;
}

.faq-section .ui.vertical.menu .item:before {
    height: 0;
}

.faq-section .ui.vertical.menu .item .title {
    font-size: 15px;
    font-weight: 700;
}

.faq-section .ui.vertical.menu .item .content {
    width: 90%;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    padding-top: 15px;
}

.my-recently-event-section .title {
    padding-bottom: 30px;
}

.my-recently-event-section .event-box-wrapper {
    display: flex;
    min-height: 120px;
}

.my-recently-event-section .event-box-wrapper .image {
    width: 100%;
}

.my-recently-event-section .event-box-wrapper .details {
    display: flex;
    align-items: center;
    width: 60%;
}

.my-recently-event-section .event-box-wrapper .image {
    width: 40%;
}

.channels .analytic-box .icon {
    width: 25px;
    height: 25px;
}

.analytic-box-wrapper.channels {
    margin-bottom: 50px;
}

.your-channels .box.channels {
    margin-bottom: 0;
}

.your-channels .column {
    padding: 8px !important;
}

.join-channels .box.channels {
    margin-bottom: 0;
    background-color: #eff0f1;
    border-left: 13px solid #06065c;
    border-radius: 13px;
}

.join-channels .column {
    padding: 8px !important;
}

.join-channels .box.channels .description {
    font-size: 14px;
    font-weight: 400;
}

.join-channels .box.channels .info {
    padding-top: 15px;
}

.profile-wrapper.channel-details .content {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.profile-wrapper.channel-details .content .details {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.profile-wrapper.channel-details
    .content
    .details
    .mini-section
    .items
    > .item {
    font-size: 12px;
    font-weight: 400;
    display: flex;
    align-items: flex-start;
}

.profile-wrapper.channel-details
    .content
    .details
    .mini-section
    .items
    > .item
    img {
    width: 15px;
    height: 15px;
    margin-right: 8px;
}

.profile-wrapper.channel-details .content .details .mini-section .friends {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-wrapper.channel-details .content .details .mini-section .friends img {
    width: 45px;
    height: 45px;
}

.box.channel-details {
    padding-left: 0;
    padding-right: 0;
}

.box.channel-details .input-box {
    background-color: #eff0f1;
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    padding-bottom: 0;
    margin-bottom: 20px;
}

.box.channel-details .input-box .image {
    width: 20%;
}

.box.channel-details .input-box .image img {
    border-radius: 50%;
    width: 70px;
    height: 70px;
}

@media (max-width: 768px) {
    .box.channel-details .input-box .image img {
        width: 50px;
        height: 50px;
    }
}

.box.channel-details .input-box .input-info {
    width: 80%;
}

.box.channel-details .input-box textarea {
    background-color: transparent;
}

.box.channel-details .input-box label img {
    width: 22px;
    height: 22px;
}

.box.channel-details .input-box .input-info .text-count {
    font-size: 14px;
    margin-left: 15px;
}

.box.channel-details .input-box .connection,
.box.channel-details .input-box .gallery {
    margin-left: 10px;
}

.channel-details .box.feed {
    background-color: #f7f8fa;
    border-radius: 10px;
}

.channel-details .channel-members {
    background-color: #f7f8fa;
    border-radius: 10px;
}

.analytic-box-wrapper a:hover {
    color: white;
}

.event-details-wrapper .description .profile.wrapper {
    margin-left: 0;
}

.channel-details .channel-members .profile.wrapper {
    margin-left: 0;
}

.profile-networks .profile.wrapper {
    margin-left: 0;
}

.timeline .ui.progress .bar .label {
    display: none;
    background-color: #eff0f1;
    color: #ed1c24;
    position: absolute;
    bottom: 20px;
    right: -50px;
    font-size: 12px;
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: 700;
}

.profile.wrapper.business-about {
    margin-left: 0;
}

.search-business-box {
    background-color: #f7f8fa;
    margin-bottom: 15px;
    border-radius: 10px;
}

.bhc-card {
    background-color: #eff0f1;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.bhc-card .stepper-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-top: 20px;
}
.bhc-card .stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;

    @media (max-width: 768px) {
        font-size: 12px;
    }
}

.bhc-card .stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 12px;
    left: -50%;
    z-index: 2;
}

.bhc-card .stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 12px;
    left: 50%;
    z-index: 2;
}

.bhc-card .stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #ccc;
    margin-bottom: 6px;
}

.bhc-card .stepper-item.active .step-counter {
    background: #06065c;
}

.bhc-card .stepper-item.active .step-counter::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
}

.bhc-card .stepper-item .step-name {
    color: #06065c;
    opacity: 0.5;
    font-size: 18px;
}

.bhc-card .stepper-item.active .step-name {
    opacity: 1;
}

.bhc-card .stepper-item.completed .step-name {
    opacity: 1;
}

.bhc-card .stepper-item.active {
    font-weight: bold;
}

.bhc-card .stepper-item.active::after {
    border-bottom: 2px solid #06065c;
    z-index: 3;
}

.bhc-card .stepper-item.completed .step-counter {
    background-color: #06065c;
}

.bhc-card .stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #06065c;
    width: 100%;
    top: 12px;
    left: 50%;
    z-index: 3;
}

.bhc-card .stepper-item:first-child::before {
    content: none;
}
.bhc-card .stepper-item:last-child::after {
    content: none;
}

.bhc-card .form {
    padding: 0px 50px;
}

.bhc-card .form .category-title {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 30px;
    padding-top: 50px;
}

.bhc-card .category-list {
    padding-left: 0;
}

.bhc-card .category-list > li::marker {
    font-size: 20px;
    font-weight: bold;
}

.bhc-card .question-list {
    padding-left: 20px;
    list-style-type: lower-alpha;
}

.bhc-card .question-list > li {
    padding-bottom: 25px;
    font-weight: bold;
}

.bhc-card .radio-group {
    display: flex;
    gap: 10px;
    padding-top: 5px;
}

.bhc-card .radio-group label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.bhc-card .radio-group input[type="radio"] {
    display: none;
}

.bhc-card .radio-group span {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    transition: background-color 0.3s, border-color 0.3s;
    user-select: none;
}

.bhc-card .radio-group input[type="radio"]:checked + span {
    background-color: #06065c;
    border-color: #06065c;
    color: #fff;
}

.bhc-card .button-wrapper {
    text-align: end;
}

.bhc-card button.next {
    background-color: #06065c;
    color: #fff;
}

.bhc-card button.next:hover {
    background-color: #06065c;
    color: #fff;
}

.bhc-card .big-title {
    font-size: 28px;
    font-weight: bold;
    padding-bottom: 30px;
    padding-top: 20px;
    color: #06065c;
    text-align: center;
}

.bhc-card .description {
    font-size: 18px;
    font-weight: 400;
    padding-bottom: 30px;
    padding-top: 20px;
    color: #06065c;
    text-align: center;
}

.bhc-info-wrapper {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.bhc-info-wrapper .average-score-card {
    background-color: #eff0f1;
    border-radius: 10px;
    padding: 50px 20px;
    margin-bottom: 15px;
    width: 25%;
}

.bhc-info-wrapper .average-score-card .big-title {
    font-size: 18px;
    font-weight: bold;
    color: #06065c;
    text-align: center;
    padding-bottom: 20px;
}

.bhc-info-wrapper .average-score-card .score {
    font-size: 90px;
    font-weight: bold;
    color: #06065c;
    text-align: center;
}

.bhc-info-wrapper .category-score-card {
    background-color: #eff0f1;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    width: 75%;
}

.bhc-info-wrapper .category-score-card .wheel {
    font-size: 18px;
    color: #06065c;
    font-weight: bold;
}

.bhc-info-wrapper .category-score-card ol {
    padding-left: 30px;
    color: #000;
    font-size: 15px;
}

.bhc-info-wrapper .category-score-card ol li {
    padding-bottom: 15px;
}

.bhc-info-wrapper .category-score-card ol .category-wrapper {
    display: flex;
}

.bhc-info-wrapper .category-score-card ol .category-wrapper .category {
    width: 60%;
}

.bhc-info-wrapper .category-score-card ol .category-wrapper .score {
    width: 40%;
}

.bhc-info-wrapper .category-score-card ol .category-wrapper .score .score-box {
    border: 1px solid #06065c;
    width: 50px;
    padding: 5px 0;
    text-align: center;
    background-color: #06065c12;
    font-weight: bold;
}

.bhc-points-wrapper {
    width: 100%;
    padding: 0 50px;
    padding-top: 30px;
}

.bhc-points-wrapper img {
    width: 100%;
    height: auto;
}

.espp-card {
    background-color: #eff0f1;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.espp-card .big-title {
    font-size: 28px;
    font-weight: bold;
    padding-top: 20px;
    color: #06065c;
    text-align: center;
}

.espp-card .description {
    font-size: 18px;
    font-weight: 400;
    padding-bottom: 30px;
    padding-top: 20px;
    color: #06065c;
    text-align: center;
}

.direct-payment-qr-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    background-color: #eff0f1;
    border-radius: 10px;
    margin-bottom: 15px;
    height: 100vh;
    flex-direction: column;
}

.direct-payment-qr-wrapper .big-title {
    font-size: 32px;
    font-weight: bold;
    padding-bottom: 30px;
    padding-top: 50px;
    color: #06065c;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}

.direct-payment-wrapper {
    /* min-height: 100vh; */
    /* height: 100%; */
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.direct-payment-wrapper .payment-card {
    background-color: #eff0f1;
    border-radius: 10px;
    padding: 30px 40px;
    width: 500px;
}

.direct-payment-wrapper .payment-card .title {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 50px;
    color: #06065c;
    text-align: center;
}

.direct-payment-wrapper .payment-card .button {
    margin-top: 50px;
}

.direct-payment-wrapper .payment-card.success .title {
    line-height: 1.4;
    padding-bottom: 20px;
}

.direct-payment-wrapper .payment-card.success table {
    width: 100%;
    background-color: transparent;
    border-color: #06065c;
    font-weight: bold;
    color: #06065c;
}

.direct-payment-wrapper .payment-card.success table td {
    width: 50%;
}

.direct-payment-wrapper .payment-card.success table tr th,
.ui.celled.table tr td {
    border-color: #06065c;
}

.direct-payment-wrapper .payment-card.success ul {
    padding-inline-start: 20px;
}

.direct-payment-wrapper .payment-card.success ul li:not(:first-child) {
    padding-top: 15px;
}

.direct-payment-wrapper .payment-card.success .button {
    margin-top: 30px;
}

/* countdown */
.countdown-container {
    width: 100%;
    display: flex;
    padding: 30px;
    margin-bottom: 30px;
    background-color: #ffebebfd;
    border-radius: 20px;
    font-size: 15px;
    font-weight: bold;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    margin: 30px auto;
}

.countdown-container.show {
    opacity: 1;
    transform: translateY(0);
}

.left-content {
    margin: 10px;
}

.countdown-content {
    margin: 10px;
}

.countdown-container .title {
    font-size: 35px;
    color: #ed1c24;
    margin-bottom: 20px;
}

.countdown-container .description {
    font-size: 14px;
    color: #333;
    margin: 0;
    line-height: 1.5;
    margin-top: 5px;
}

#countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.countdown-item {
    text-align: center;
    margin: 0 10px;
}

.countdown-value {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    background: #ffffff;
    border-radius: 10px;
    padding: 5px 10px;
}

.countdown-label {
    display: block;
    font-size: 10px;
    margin-top: 5px;
    color: #666;
}

.btn-primary {
    display: block;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background-color: #ed1c24;
    color: #fff;
    margin: 0 auto;
    font-weight: bold;
    text-align: center;
}

/* ticket table */
.tickets {
    overflow-x: auto;
    position: relative;
}

.tickets table {
    width: 100%;
    border-collapse: collapse;
}

.tickets th,
.tickets td {
    padding: 8px 10px;
    text-align: left;
    white-space: nowrap;
    border: none;
    font-size: 14px;
}

.tickets th:first-child,
.tickets td:first-child {
    position: sticky;
    left: 0;
    background-color: inherit;
}

.tickets tr {
    border-bottom: 1px solid #ddd;
}

.tickets tr:nth-child(even) {
    background-color: #f2f2f2;
}

.tickets tr:nth-child(odd) {
    background-color: #ffffff;
}

/* business inquiries table */

.myDataTable, 
#myDataTable {
    position: relative;
    border: 1px solid #ddd;
}

.myDataTable tr:nth-child(even), 
#myDataTable tr:nth-child(even) {
    background-color: #f4f4f4;
}

.myDataTable tr:nth-child(odd), 
#myDataTable tr:nth-child(odd) {
    background-color: #ffffff;
}

input.error {
    border-color: red !important;
}

body.modal-open {
    overflow: hidden !important;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: none;
}

.confirm-image {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.confirm-image .header {
    padding: 16px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
}

.confirm-image .close.icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5em;
    cursor: pointer;
}

.confirm-image .image.content {
    padding: 16px;
    text-align: center;
}

#croppie-container {
    width: 100%;
    height: 450px;
    padding-bottom: 30px;
}

.confirm-image .actions {
    padding: 16px;
    text-align: center;
}

.confirm-image .ui.button {
    margin: 0 8px;
}

.email-otp-wrapper {
    display: flex;
    justify-content: center;
}

.email-otp-box {
    background-color: #eff0f1;
    border-radius: 10px;
    padding: 20px;
    width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.email-otp-box .image {
    width: 100px;
    height: 100px;
}

.email-otp-box .image img {
    width: 100%;
    height: 100%;
}

.email-otp-box .title {
    padding-top: 20px;
    font-size: 16px;
    text-align: center;
    font-weight: 400;
}

.email-otp-box .inputs {
    display: flex;
    gap: 10px;
    padding-top: 20px;
}

.email-otp-box .inputs .input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.email-otp-box .buttons {
    padding-top: 30px;
}

.email-otp-box a {
    cursor: pointer;
    padding-top: 15px;
    text-decoration: underline;
}

.private-event {
    width: 100%;
    padding: 50px;
    border: 2px solid #06065c;
    border-radius: 5px;
    text-align: center;
    background-color: #f7f8fa;
}

.private-event .title {
    font-size: 36px;
    font-weight: bold;
    padding-bottom: 20px;
    color: #06065c;
}

.private-event .description {
    font-size: 20px;
    font-weight: 400;
    color: #06065c;
}

.invite.member{
    border-radius: 8px;
    background-color: #eff0f1;
    padding: 25px;
    margin-bottom: 25px;
    text-align: center;
}

.invite.member .icon{
    font-size: 42px;
    text-align: center;
    padding: 20px 0;
}

.supreme-url{
    display: flex;
    cursor: pointer;
    justify-content: space-between;
    align-content: center;
    border: 2px #06065c solid;
    background: #ffffff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 25px;
}

.supreme-why{
    /*border: 2px #ed1c24 solid;*/
    background: #fff;
    color: #ed1c24;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 25px;
    align-items: stretch;
}

.supreme-icons{
    padding: 25px;
    margin: 0 -25px;
    margin-bottom: 25px;
    text-align: center;
}

.supreme-icons img{
    position: relative;
    width: 35%;
    border-radius: 500px;
    border: 1px #fff solid;
}


.supreme-icons img:nth-child(2){
    margin: 0 -4%;
    z-index: 1;
}



.supreme-header-wrapper{
    background: #ebebeb;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
}

.supreme-header-wrapper h1{
    font-size: 36px;
    color: #ed1c24;
}


.supreme-header-wrapper p{
    font-size: 16px;
}

.supreme-wrapper > h3{
    color: #fff;
    text-align: center;
    padding-top: 20px;
    font-size: 24px;
}


.supreme-wrapper > p{
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 15px;
}


.supreme-why p{
    color: #666;
}

.supreme-wrapper{
    background: #06065c;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
}

@media screen and (max-width: 687px) {

    .email-otp-box {
        padding: 10px;
        width: 90%;
    }

    .email-otp-box .inputs .input {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .btn-event {
        align-self: center;
        margin-left: auto;
        margin-top: 30px;
    }

    .header-wrapper .function a {
        white-space: nowrap;
    }

    .countdown-container {
        flex-direction: column;
    }

    .left-content {
        text-align: center;
        margin: 10px;
    }

    .confirm-image {
        width: 95%;
        max-width: none;
    }

    #croppie-container {
        height: 400px;
    }
}

.country-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
}

.country {
    width: 70%;
}

.country-button {
    width: 100%;
    background-color: #efefef;
    border: none;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    font-size: 16px;
    color: #505050;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
    font-weight: bolder;
}

.country-button:hover {
    background-color: #d5d5d5;
}
.country-button.active {
    background-color: #06065c;
    color: #e6e6e6;
}

.flag-icon {
    width: 50px;
    height: auto;
    margin-right: 15px;
    border-radius: 50%;
}

.region-modal {
    margin-left: 40px;
    background-color: #fafafa;
    border-radius: 10px;
    width: 100%;
    height: auto;
    position: relative;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    /* box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    border: solid 1px;

}

.region-modal.open {
    visibility: visible;
    opacity: 1;
}

.region-modal .modal-header {
    background-color: #fafafa;
    color: rgb(43, 43, 43);
    padding: 15px;
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.region-items {
    margin: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.region-item {
    padding: 20px;
    display: flex;
    align-items: center;
    color: rgb(45, 45, 45);
    transition: background-color 0.3s, color 0.3s;
    box-sizing: border-box;
    border-radius: 8px;
    background-color: #f9f9f9;
    overflow: hidden;
    width: calc(50% - 10px);
}

.region-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 15px;
}

.region-item:hover {
    background-color: #e9e9e9;
}

.region-modal .close-button {
    background-color: transparent;
    border: none;
    font-size: 25px;
    color: rgb(80, 80, 80);
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 15px;
}

.region-modal .close-button:hover {
    color: #06065c;
}

.power-teams-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 20px;
}

.power-team {
    background-color: #f3f2f2;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    text-align: left;
}

.power-team h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
}

.power-team p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.power-team:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.power-team-title {
    display: flex;
    align-items: center;
    text-align: center;
}

.power-team-title h2,
.power-team-title .region {
    display: inline-block;
    margin: 0;
}

.power-team-title h2 {
    margin-right: 10px;
}

.region-text {
    background: rgb(0, 196, 0);
    border: none;
    border-radius: 5px;
    text-align: center;
    width: auto;
    color: white;
    padding: 2px 10px;
}

.power-team.container .image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.powerteam-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.power-team.container .text-wrapper {
    padding: 16px;
}

.power-team.container .total-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: auto;
    padding: 8px 16px;
}

.power-team.container .total-people {
    margin-right: 8px;
    font-weight: bold;
}

.power-team.container .total-icon i {
    color: #484848;
    font-size: 14px;
}

.card .director-profile{
    display: flex;
    align-items: center;
    /* background-color: #f0f0f0; */
    border-radius: 15px;
    /* width: 100%; */
    position: relative;
    z-index: 2;
    margin: 10px;
}

.card .image-wrapper {
    background-color: #ffffff;
    border-radius: 100%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 20px;
    border: 4px solid #1cf300;
}

.card .image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card .text-wrapper {
    flex: 1;
}

.card .text-wrapper p {
    margin: 0;
    font-size: 16px;
    color: #555;
}

.card .text-wrapper .director-name {
    display: flex;
    align-items: center;
    text-align: center;
}

.card .text-wrapper .director-name h2,
.card .text-wrapper .director-name h3 {
    display: inline-block;
    margin: 0;
}

.card .text-wrapper .director-name h3 {
    background-color: #06065c;
    border-radius: 5px;
    padding: 4px 10px;
    color: white;
    margin-left: 10px;
    font-size: 12px;
}

.card .text-wrapper .director-name h2 {
    font-size: 25px;
}

.director-container .btn-container {
    margin-top: 25px;
    margin-left: 0px;
    display: flex;
    gap: 10px;

    overflow-x: auto;        
    white-space: nowrap;     
    padding-bottom: 10px;     
}

.director-container .btn-container button {
    background-color: white;
    border: 2px solid #06065c;
    color: #06065c;
    padding: 10px 24px;
    margin: 0;
    font-size: 15px;
    font-weight: bold;
    /* margin-left: 20px; */
    gap: 20px;
    width: auto;
    border-radius: 20px;
    height: 100%;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.director-container .btn-container button:hover {
    border: 2px solid #06065c;
    background-color: #06065c;
    color: white;
}

.director-container .btn-container button.active {
    border: 2px solid #06065c;
    background-color: #06065c;
    color: white;
}

.committee-list {
    margin-top: 25px;
    border-radius: 20px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.committee-profile {
    background-color: #f0f0f0;
    border-radius: 15px;
    width: calc(50% - 10px);
    min-width: 280px;
    display: flex;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.committee {
    display: flex;
    align-items: center;
}

.committee-image-wrapper {
    background-color: #ffffff;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 15px;
}

.committee-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.committee-text-wrapper {
    display: flex;
    flex-direction: column;
}

.committee-text-wrapper h4 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.committee-text-wrapper p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.director-container h1 {
    font-size: 23px;
    margin-bottom: 30px;
}

.director-container {
    border-radius: 20px;
}

.members-title {
    margin-top: 25px;
    margin-left: 0px;
    display: flex;
}

.members-title p {
    margin-top: 10px;
    margin-left: 20px;
}

.members-title h3 {
    background-color: #06065c;
    padding: 10px 24px;
    color: white;
    margin: 0;
    font-size: 15px;
    font-weight: bold;
    margin-left: 20px;
    width: auto;
    border-radius: 20px;
}

.members-container {
    background-color: #ebebeb;
    border-radius: 15px;
    width: 100%;
    height: auto;
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
}

.member-profile {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 10px;
    width: 33.333%;
}

.members-container .members {
    display: flex;
    align-items: center;
    border-radius: 20px;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 15px;
    box-sizing: border-box;
    margin: 0 auto;
}

.member-image-wrapper {
    background-color: #ffffff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    overflow: hidden;
    margin-right: 15px;
}

.member-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.member-text-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.member-name-wrapper {
    display: flex;
    align-items: center;
}

.member-name-wrapper .member-name {
    font-weight: bold;
    font-size: 13px;
    margin: 0;
    font-weight: bold;
    font-size: 13px;
}

.member-name-wrapper .member-description {
    font-size: 12px;
    margin: 0;
}

.breadcrumb-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.ui.button.btn-join {
    background-color: #06065c;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 15px;
}

.ui.button.btn-unjoin {
    background-color: #606072;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 15px;
}

.ui.button.btn-wait {
    background-color: #06065c;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 15px;
}

.no-member p {
    padding: 20px;
}

.team-badge {
    margin-left: 5px;
}

.label-me {
   background: #49fc18;
   font-size: 8px;
   padding: 5px;
   color: white;
   border-radius: 10px;
   height: 13px;
   width: 20px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.label-committee {
   background: var(--primary-color);
   font-size: 8px;
   padding: 5px;
   color: white;
   border-radius: 10px;
   height: 13px;
   width: 20px;
   display: flex;
   align-items: center;
   justify-content: center;
}


.email-otp-box {
    padding: 10px;
    width: 90%;
}

.email-otp-box .inputs .input {
    width: 35px;
    height: 35px;
    font-size: 16px;
}

.btn-event {
    align-self: center;
    margin-left: auto;
    margin-top: 30px;
}

.header-wrapper .function a {
    white-space: nowrap;
}

.countdown-container {
    flex-direction: column;
}

.left-content {
    text-align: center;
    margin: 10px;
}

.confirm-image {
    width: 95%;
    max-width: none;
}

#croppie-container {
    height: 400px;
}

.ui.modal.feature-event-popup {
    min-width: 800px;
    background: transparent;
}

.ui.modal.feature-event-popup img {
    cursor: pointer;
    width: 100%;
    height: auto;
}

#announcement-bar {
    background: rgba(0, 0, 0, 0.717);
    padding: 10px 20px;
    font-size: 14px;
    position: fixed;
    top: 71px;
    left: 0;
    width: 100%;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

#announcement-bar .animation-placement {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

#announcement-bar .animation-wrapper {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 150px;
    animation: scrollAnnouncement 50s linear infinite;
}

#announcement-bar .animation-wrapper:hover {
    animation-play-state: paused;
}

@keyframes scrollAnnouncement {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

#announcement-bar .announcement-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

#announcement-bar .announcement-content strong {
    font-weight: 600;
    color: #ffffff;
}

#announcement-bar .announcement-content div[type="description"] {
    color: #ffffff;
}

#announcement-bar .announcement-icon {
    width: 16px;
    height: 16px;
}

#announcement-bar .close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    /* margin-left: 20px; */
}
@media (max-width: 768px) {

    #announcement-bar .animation-wrapper { 
        animation: scrollAnnouncement 50s linear infinite;
    }

    @keyframes scrollAnnouncement {
        from {
            transform: translateX(75%);
        }
        to {
            transform: translateX(-75%);
        }
    }
}

@media (max-width: 500px) {

    #announcement-bar .animation-wrapper { 
        animation: scrollAnnouncement 40s linear infinite;
    }

    @keyframes scrollAnnouncement {
        from {
            transform: translateX(70%);
        }
        to {
            transform: translateX(-70%);
        }
    }
}

@media (max-width: 1000px) {
    .ui.modal.feature-event-popup {
        min-width: 600px;
    }
}

@media (max-width: 768px) {
    
    .region-modal .close-button {
        font-size: 35px;
    }

    .ui.modal.feature-event-popup {
        min-width: 500px;
    }
    .card .text-wrapper .director-name h2 {
        font-size: 18px;
    }

    .card .text-wrapper .director-name h3 {
        font-size: 10px;
    }

    .card .text-wrapper p {
        font-size: 12px;
        margin-right: 10px;
    }

    .member-profile {
        display: block;
        text-decoration: none;
        color: inherit;
        padding: 10px;
        width: 100%;
    }

    .committee-profile {
        width: calc(100% - 10px);
    }

    .card .text-wrapper .director-name {
        display: table-row;
        align-items: center;
        text-align: left;
    }

    .card .text-wrapper .director-name h2,
    .card .text-wrapper .director-name h3 {
        display: inline-block;
        margin: 0;
    }

    .card .text-wrapper .director-name h3 {
        margin-bottom: 10px;
    }

    .director-container .btn-container {
        align-items: center;
    }

    .director-container .btn-container button {
        padding: 10px;
        font-size: 15px;
    }

    .country-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .country {
        width: 100%;
        order: 1;
        margin-bottom: 20px;
    }

    .country-button {
        width: 100%;
        font-size: 16px;
        padding: 15px;
    }

    .region-modal {
        width: 100%;
        height: 100vh; /* Fullscreen height */
        top: 0;
        right: 0;
        left: 0;
        margin: 0;
        padding: 0;
        overflow-y: auto; /* Enable vertical scroll */
        position: fixed;
        z-index: 1000;
    }

    .region-items {
        margin: 10px;
        gap: 5px;
    }

    .region-item {
        width: calc(100% - 10px); /* Full width minus margin */
        padding: 15px;
    }

    .modal-header {
        font-size: 18px;
        padding: 10px;
        margin-bottom: 15px;
        position: sticky;
        top: 0;
        background-color: #fafafa;
        z-index: 1001;
    }

    .flag-icon {
        width: 40px;
        height: auto;
    }

    .region-img {
        width: 40px;
        height: 40px;
    }

    .close-button {
        font-size: 18px;
    }

    .power-teams-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .power-team {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .ui.modal.feature-event-popup {
        min-width: 90%;
    }
}

/* ===== Modal Styles ===== */
.reel-modal {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(20, 20, 20, 0.151);
    align-items: center;
    align-content: center;
    padding-top: 0;
}

.reel-modal-header {
    width: 100%;
    max-width: calc(600px * (9 / 16));
    margin: auto;
    position: relative;
    background-color: transparent;
}

.reel-close {
    position: absolute;
    top: -16px;
    right: -16px;
    z-index: 10;
    width: 50px;
    height: 50px;
    font-size: 30px;
    color: black;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.498);
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-close:hover,
.reel-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

@media (min-width: 1000px) {
    .reel-modal-content iframe {
        width: 336px;
        height: 600px;
    }
}

@media (max-width: 1000px) {
    .reel-close {
        top: -20px !important;
        right: 10px !important;
    }
}

/* ===== Swiper Pagination ===== */
.swiper-pagination-bullet {
    background-color: #9f9f9f;
}

.swiper-pagination-bullet-active {
    background-color: #ccc;
}

/* ===== Top Members Section ===== */
.top-members h2,
.section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.top-members-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.top-member-card {
    display: flex;
    align-items: center;
    background: #f4f4f4;
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.2s;
}

.top-member-card .profile {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.top-member-card .profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-member-info {
    flex: 1;
}

.top-member-info .name,
.top-member-info .expertise {
    font-weight: bold;
    color: #333;
}

.top-member-info .name {
    font-size: 15px;
}

.top-member-info .expertise {
    font-size: 12px;
    margin-bottom: 5px;
}

.top-member-info .bio {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .top-members-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Discovery & Layout ===== */
.discover-weekly h1 {
    font-size: 35px;
}

.header-banner-discovery {
    text-align: center;
    padding: 20px 15px;
    background: var(--primary-color);
    border-radius: 13px;
    color: white;
    margin-bottom: 2rem;
}

.section {
    margin-bottom: 70px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section .swiper-button {
    display: flex;
    align-items: center;
}

.button-round.prev,
.button-round.next {
    width: 40px;
    height: 40px;
    background-color: #d9d9d9;
    color: #858383;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.swiper-container-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

/* ===== Cards ===== */
.section .card,
.section .carousel .card-content {
    background: #f4f4f4;
    border-radius: 12px;
    transition: transform 0.2s;
}

.section .card .image,
.discover.content .image,
.section .card.banner .image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
    display: block;
}

.section .card.slide.carousel .image {
    border-radius: 12px 12px 0px 0px;
}

.section .card.banner .image {
    height: 400px;
}

.section .card.feature {
    margin-top: 10px;
    width: 100%;
}

.discover.content .image {
    height: 400px;
}

.section .video .image {
    aspect-ratio: 9 / 16;
    width: 100%;
    height: 100%;
    background: gray;
}

.section .video-content,
.section .banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    color: #fff;
    z-index: 2;
    width: 100%;
    background: linear-gradient(to top, black, rgba(0, 0, 0, 0));
    backdrop-filter: blur(1px);
}

.section .banner-content h2 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.section .banner-content p {
    margin: 5px 0 0;
    font-size: 16px;
    line-height: 1.4;
}

.section .carousel .card-content {
    padding: 15px;
}

.section .carousel .card-content h3 {
    margin-bottom: 5px;
}

.section .new-feature {
    display: flex;
    align-items: center;
    gap: 20px;
}

.section .new-feature-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.discover-image-wrapper {
    height: 100%;
    width: 100%;
    position: relative;
}

.section .card .image img,
.discover.content .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: absolute;
    top: 0;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
    .discover-weekly h1 {
        font-size: 25px;
    }
    .discover.content .image {
        height: 300px;
        text-align: unset !important;
    }
    .section .banner-content {
        padding: 20px;
    }
    .section .new-feature {
        flex-direction: column;
        align-items: stretch;
    }
    .section .new-feature .card.feature {
        order: 0;
        margin-bottom: 1rem;
    }
    .section .new-feature .new-feature-content {
        order: 1;
    }
    .section .card.banner .image {
        height: 0;
        padding-top: 100%;
    }
    .section .card.banner .image img,
    .section .card.banner .image .discover-image-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.members-container .pagination-container {
    display: flex;
    justify-content: center;
    padding: 10px;
    width: 100%;
    background-color: #dfdfdf;
    border-radius: 0 0 15px 15px;
}

.director-profile-wrapper {
    display: flex;
    justify-content: left; 
    align-items: center;    
    background: #ebebeb;
    width: 100%;
    border-radius: 15px;
    justify-content: space-between;
}

.apply-action-wrapper {
    margin-top: 10px;
    display: flex;
    justify-content: right;
}

.ui.green.button.visit-direction-btn {
    margin-right: 50px;
}

@media (max-width: 765px) {
    .apply-action-wrapper .ui.button.btn-join {
        font-size: 11px;
    }

    .ui.green.button.visit-direction-btn {
        display: none;
    }

    .card.director-modal .image-wrapper,
    .director-container .card .image-wrapper {
        margin: 10px;
        width: 60px;
        height: 60px;
    }
}

     .industries-country {
        display: grid;
        gap: 1rem;
    }

    .powergroup-title-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }
    .powergroup-wrapper,
    .powerteam-wrapper {
        position: relative;
        background: #FFFFFF;
        box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15);
        padding: 20px;
        border-radius: 0.28571429rem;
        border: 1px solid rgba(34, 36, 38, 0.15);
        height: auto;
        margin-bottom: 20px;
    }

    .powergroup-wrapper h1 {
        margin: 0px;
        font-size: 36px;
        color: rgb(255, 255, 255);
    }


    .powergroup-description {
        background: var(--primary-color);
        border-radius: 8px;
        height: 100%;
        padding: 25px;
        color: white;
    }

    .powerteam-description {
        margin-top: 15px;
        /* background: rgb(238, 238, 238); */
        border-radius: 8px;
        height: 100%;
        padding: 20px;
        border: 2px solid var(--primary-color);
        color: black;
    }

    /* .powerteam-director-info {
        margin-top: 20px;
        background: var(--primary-color);
        border-radius: 8px;
        height: 100%;
        padding: 50px;
    } */

    .powergroup-description .title {
        font-weight: bold;
        color: white;
        margin-bottom: 20px;
    }

    .powerteam-description .title {
        font-size: 25px;
        font-weight: bold;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .powerteam-description .description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    .powerteam-description .action {
        margin-top: 35px;
    }

    .powerteam-wheel-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        gap: 20px; /* space between the items */
    }

    /* .region-placeholder {
        margin-left: 40px;
        background-color: #f8f8f8;
        border-radius: 10px;
        display: flex;
        width: 100%;
        height: 417px;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
        font-weight: bolder;
        color: #c2c2c2;
        border: 1px dashed rgb(172, 172, 172);
    } */

    .access-powerteam-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: var(--primary-color);
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0px 1px 2px rgba(34, 36, 38, 0.15);
        text-align: center;
    }
    .access-powerteam-info .access-header h3 {
        font-size: 24px;
        padding: 10px 20px;
        color: white;
    }
    .access-powerteam-info .access-header p {
        font-size: 16px;
        color: white;
        margin-bottom: 20px;
        padding: 0px 30px;
    }
    .access-powerteam-info .available-countries {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .access-powerteam-info .country-flag img {
        width: 40px;
        border-radius: 50%;
        margin-left: -5px;
    }
    .access-powerteam-info .join-button a {
        margin-top: 20px;
        font-size: 16px;
    }

    .powergroup-box-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 20px;
    }
    .powergroup-box {
        border: 2px solid var(--primary-color);
        /* box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); */
        border-radius: 8px;
        padding: 20px;
        cursor: pointer;
    }

    .powergroup-box:hover{
        background: #f1f1f1;
    }

    .powergroup-box h3 {
        font-size: 20px;
        margin-bottom: 10px;
        color: #ff4646;
    }
    .powergroup-box p {
        font-size: 16px;
        color: #202020;
    }

    .powerteam-description .team-title {
        text-align: left;
        margin-top: 50px;
        margin-bottom: 10px;
    }

    .team-title h4 {
        display: inline-block;
        background: var(--primary-color);
        color: #fff;
        padding: 8px 18px;
        border-radius: 8px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .matched-team-description {
        padding: 5px;
        /* margin-top: 10px; */
        margin-bottom: 10px;
    }

    .request-info-wrapper {
        padding: 15px;
        border: 3px solid #9894B7;
        border-radius: 10px;
        font-size: 16px;
        text-align: center;
        color: #9894B7;
        font-weight: bold;
    }

    @media (max-width: 768px) {

        .powergroup-wrapper {
            padding: 0px;
        }

        .team-title h4 {
            font-size: 12px;
        }

        .powergroup-wrapper h1 {
            font-size: 27px;
        }
        .country-button {
            margin: 0px;
        }
        
        .powergroup-title-wrapper {
            display: block;
        }

        .powergroup-title-wrapper .ui.medium.green.button{
            margin-top: 10px;
        }

        .region-placeholder {
           display: none !important;
        }

        .powerteam-description {
            padding: 20px;
        }

        .powerteam-description .title {
            font-size: 20px;
        }

        .powerteam-description .description {
            font-size: 14px;
            
        }
        .powergroup-box-container {
            grid-template-columns: repeat(1, 1fr);
        }

        .matched-team-description p{
            font-size: 12px;
        }
    }