/*
    Created on : Nov 3, 2020, 4:50:32 PM
    Author     : ekosantoso
*/

@import url('//fonts.googleapis.com/css2?family=Public+Sans:wght@200;300;400;500;600;700;800&display=swap');
:root {
    --colorOrange: #ED692C;
    --colorHazeBlack: #2F3237;
    --colorTextParagraph: #666666;
    --colorOrangeGradient: linear-gradient(90deg, #E86936 0%, #F87D26 100%);
    --colorOrangeAscentSemiTransparent: rgba(237, 105, 44, 0.1);
    --colorOrange50Percent: rgba(237, 105, 44, 0.5);
    --colorWhite: #ffffff;
    --colorWhiteGradient: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
    --colorBgZebra: rgb(250, 250, 250);
    --colorRed: #EA4335;
    --colorBlue: #3B5998;
}
body {
    font-family: 'Public Sans', sans-serif;
    font-size: 16px;
}
.outer-container {
    /* max-width: 1440px; */
    margin: 0 auto;
}
.outer-container.topbar-fixed-top {
    padding-top: 58px;
}
.container.container-auth {
    max-width: 1440px;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}
b {
    font-weight: 700;
}
p {
    color: var(--colorTextParagraph);
}
.font-weight-200 {
    font-weight: 200;
}
.font-weight-300 {
    font-weight: 300;
}
.font-weight-400 {
    font-weight: 400;
}
.font-weight-500 {
    font-weight: 500;
}
.font-weight-600 {
    font-weight: 600;
}
.font-weight-700 {
    font-weight: 700;
}
.font-weight-800 {
    font-weight: 800;
}
.font-size-10 {
    font-size: 10px;
    line-height: 1.5;
}
.font-size-12 {
    font-size: 12px;
    line-height: 1.5;
}
.font-size-14 {
    font-size: 14px;
    line-height: 1.5;
}
.font-size-15 {
    font-size: 15px;
    line-height: 1.5;
}
.font-size-16 {
    font-size: 16px;
    line-height: 1.5;
}
.font-size-18 {
    font-size: 18px;
    line-height: 1.5;
}
.font-size-20 {
    font-size: 20px;
    line-height: 1.5;
}
.font-size-22 {
    font-size: 22px;
    line-height: 1.18;
}
.font-size-24 {
    font-size: 24px;
    line-height: 1.5;
}
.font-size-28 {
    font-size: 28px;
    line-height: 1.5;
}
.font-size-32 {
    font-size: 32px;
    line-height: 1.5;
}
.font-size-35 {
    font-size: 35px;
    line-height: 1.5;
}
.font-size-40 {
    font-size: 40px;
    line-height: 1.5;
}
.font-size-50 {
    font-size: 50px;
    line-height: 1.18;
}
.font-size-55 {
    font-size: 50px;
    line-height: 1.5;
}
.text-primary {
    color: var(--colorOrange) !important;
}
.color-black {
    color: #000000;
}
.color-white {
    color: #ffffff;
}
a.text-primary:hover, a.text-primary:focus {
    color: var(--colorOrange) !important;
}
.text-highlight {
    font-weight: 700;
    background-color: var(--colorOrangeAscentSemiTransparent);
}

.text-ellipsis {
    overflow: hidden;
    display: block;
    display: -webkit-box;
    text-overflow: ellipsis;
    word-break: break-word;
    white-space: normal;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.text-ellipsis.two-row {
    -webkit-line-clamp: 2;
}
.text-ellipsis.three-row {
    -webkit-line-clamp: 3;
}

.btn {
    border-radius: 5px;
    padding: 9px 16px;
    line-height: 1.175;
    transition: all 0.4s ease 0s;
}
.btn:hover {
    -webkit-box-shadow: 0px 4px 25px -10px rgba(0,0,0,0.57);
    -moz-box-shadow: 0px 4px 25px -10px rgba(0,0,0,0.57);
    box-shadow: 0px 4px 25px -10px rgba(0,0,0,0.57);
    transition: all 0.4s ease 0s;
}
.btn.btn-wide {
    padding: 16px 32px;
}
.btn.btn-primary{
    color: var(--colorWhite) !important;
    background: rgb(232,105,54);
    background: -moz-linear-gradient(90deg, rgba(232,105,54,1) 0%, rgba(248,125,38,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(232,105,54,1) 0%, rgba(248,125,38,1) 100%);
    background: linear-gradient(90deg, rgba(232,105,54,1) 0%, rgba(248,125,38,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e86936",endColorstr="#f87d26",GradientType=1);
}
.btn.btn-primary:active {
    color: var(--colorWhite) !important;
    background: rgb(232,105,54) !important;
    background: -moz-linear-gradient(90deg, rgba(232,105,54,1) 0%, rgba(248,125,38,1) 100%) !important;
    background: -webkit-linear-gradient(90deg, rgba(232,105,54,1) 0%, rgba(248,125,38,1) 100%) !important;
    background: linear-gradient(90deg, rgba(232,105,54,1) 0%, rgba(248,125,38,1) 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e86936",endColorstr="#f87d26",GradientType=1) !important;
}
.btn.btn-primary.btn-transparent {
    color: var(--colorOrange) !important;
    background: var(--colorWhite);
    border: 1px solid var(--colorOrange);
}
.btn.btn-primary-invert {
    background: var(--colorOrangeAscentSemiTransparent);
}
.btn.btn-white {
    color: var(--colorOrange);
    background-color: var(--colorWhite);
}
.btn.btn-tag {
    color: var(--colorHazeBlack);
    background-color: #F8F8F8;
    border-radius: 4px;
    padding: 16px 24px;
}
.btn-sign-google,
.btn-sign-google:hover {
    color: var(--colorRed);
    border-color: var(--colorRed);
}
.btn-sign-facebook,
.btn-sign-facebook:hover {
    color: var(--colorBlue);
    border-color: var(--colorBlue);
}
.sk-wave {
    width: auto;
}
.sk-primary.sk-rotating-plane, .sk-primary.sk-double-bounce .sk-child, .sk-primary.sk-wave .sk-rect, .sk-primary.sk-wandering-cubes .sk-cube, .sk-primary.sk-spinner-pulse, .sk-primary.sk-chasing-dots .sk-child, .sk-primary.sk-three-bounce .sk-child, .sk-primary.sk-circle .sk-child:before, .sk-primary.sk-cube-grid .sk-cube, .sk-primary.sk-fading-circle .sk-circle:before, .sk-primary.sk-folding-cube .sk-cube:before {
    background-color: var(--colorOrange50Percent);
}
.bg-orange-gradient {
    color: var(--colorWhite) !important;
    background: rgb(232,105,54);
    background: -moz-linear-gradient(90deg, rgba(232,105,54,1) 0%, rgba(248,125,38,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(232,105,54,1) 0%, rgba(248,125,38,1) 100%);
    background: linear-gradient(90deg, rgba(232,105,54,1) 0%, rgba(248,125,38,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e86936",endColorstr="#f87d26",GradientType=1);
}
.bg-zebra {
    background-color: var(--colorBgZebra);
}
.box-shadow {
    box-shadow: 0px 4px 16px 4px rgba(148, 140, 140, 0.08);
    -moz-box-shadow: 0px 4px 16px 4px rgba(148, 140, 140, 0.08);
    -webkit-box-shadow: 0px 4px 16px 4px rgba(148, 140, 140, 0.08);
}
.img-circle {
    border-radius: 50%;
}
.ui-wh-16 {
    width: 16px !important;
    height: 16px !important;
}
.ui-wh-18 {
    width: 18px !important;
    height: 18px !important;
}
.ui-wh-21 {
    width: 21px !important;
    height: 21px !important;
}
.ui-wh-24 {
    width: 24px;
    height: 24px;
}
.ui-wh-38 {
    width: 38px;
    height: 38px;
}
.ui-wh-42 {
    width: 42px;
    height: 42px;
}
.ui-wh-50 {
    width: 50px !important;
    height: 50px !important;
}
.ui-wh-80 {
    width: 80px !important;
    height: 80px !important;
}
.ui-wh-100 {
    width: 100px;
    height: 100px;
}
.padding-60 {
    padding: 60px;
}
.border-radius-12 {
    border-radius: 12px;
}
.table-borderless tbody+tbody, .table-borderless td, .table-borderless th, .table-borderless thead th {
    border: 0;
}

.tb-loading-wrapper {}
.tb-loading-wrapper > img {
    max-width: 100%;
    width: 120px;
}

/*  Header */
.outer-container.topbar-fixed-top #header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 3;
    /* max-width: 1440px; */
}
#header {
    background-color: var(--colorWhite);
    border-bottom: 1px solid #EEF0F8;
}
#header .container {
    max-width: 1220px;
}
#header .main-logo {
    max-width: 140px;
}
.navbar-expand-lg .navbar-nav.main-navmenu .nav-item {
    margin-right: 15px;
}
.navbar-expand-lg .navbar-nav.main-navmenu .nav-item:last-child{
    margin-right: 0px;
}
.navbar-expand-lg .navbar-nav.main-navmenu .nav-item a {
    color: var(--colorHazeBlack);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.175;
    opacity: 0.7;
    padding: 8px 15px;
}
.navbar-expand-lg .navbar-nav.main-navmenu .nav-item.active a {
    color: var(--colorOrange);
}
.navbar-expand-lg .navbar-nav.main-navmenu .nav-item a.btn{
    opacity: 1;
    color: var(--colorOrange);

}
/*  End Header */

/*  Header Auth*/
.auth-navmenu {}
.auth-navmenu li {}
.auth-navmenu li > span {
    font-size: 13px;
    color: #aaaaaa;
}
.auth-navmenu li > span.line-separator {
    position: relative;
    width: 30px;
    height: 1px;
}
.auth-navmenu li > span.line-separator:before {
    content: "";
    background-color: #aaaaaa;
    width: 100%;
    height: 1px;
    position: absolute;
}
.auth-navmenu li .btn-primary-invert {
    color: var(--colorOrange) !important;
}
/*  End Header Auth */

/* Element List */
.app-list-inline {
    display: flex;
}
.app-list-inline li {
    margin-right: 14px;
}
.app-list-inline li:last-child {
    margin-right: 0px;
}
.app-list-inline li a {
    display: block;
    transition: all 0.4s ease 0s;
}
.app-list-inline li a:hover {
    -webkit-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
    -moz-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
    box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
    transition: all 0.4s ease 0s;
}
.app-list-inline li a img {
    max-width: 150px;
}
.td-pricing-no-border td {
   border-top: 0px;
  }
#blog-section {
    min-height: 200px;
}
#section-blog {
    margin: 50px;
}
.card.blog{
    border-radius: 5px;
    height: 100%;
}
.image-blog .blog{
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}
.title-blog{
    margin-top: 17px;
    margin-left: 19px;
    font-size: 20px;
    font-weight: 700;
}
.datetime-blog{
    font-weight: 100;
    font-size: 14px;
    line-height: 150%;
    margin-left: 19px;
    margin-top: 8px;
    margin-bottom: 12px;
    color: #2F3237;
}
.blog{
    font-size: 20px;
    color: #666666;
    font-weight: 100;
}
.list-blog{
    border: 1px solid #ED692C;
}
.list-blog .button-list-blog{
    color: #ED692C;
}
.social-media-list {}
.social-media-list li {
    display: inline-block;
    margin-right: 10px;
}
.social-media-list li:last-child {
    margin-right: 0;
}
.social-media-list li a {
    font-size: initial;
    height: 22px;
    width: 22px;
    position: relative;
    display: block;
    overflow: hidden;
    color: transparent !important;
}
.social-media-list li a:before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-size: 22px;
    background-position: center center;
    left: 0;
    top: 0;

}
.social-media-list li.facebook a:before {
    background-image: url('https://contentcreatorblackbook.com/application/tribelio/default/media/img/landingpage/v4/social-facebook.png');
}
.social-media-list li.twitter a:before{
    background-image: url('https://contentcreatorblackbook.com/application/tribelio/default/media/img/landingpage/v4/social-twitter.png');
}
.social-media-list li.instagram a:before{
    background-image: url('https://contentcreatorblackbook.com/application/tribelio/default/media/img/landingpage/v4/social-instagram.png');
}
.social-media-list li.whatsapp a:before{
    background-image: url('https://contentcreatorblackbook.com/application/tribelio/default/media/img/landingpage/v4/social-whatsapp.png');
}
.social-media-list li.youtube a:before{
    background-image: url('https://contentcreatorblackbook.com/application/tribelio/default/media/img/landingpage/v4/social-youtube.png');
}
.social-media-list.menu-download-footer li a {
    width: 13px;
    height: 13px;
}
.social-media-list.menu-download-footer li a:before {
    width: 13px;
    height: 13px;
}
.social-media-list.menu-download-footer li a:before {
    background-size: 13px;
}
.social-media-list.menu-download-footer li.text a {
    color: #fff !important;
    width: auto;
    padding-right: 10px;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
}
.info-features{
    display: flex;
    justify-content: space-between;
    padding: 0px 60px;
    margin-top: 48px;
    margin-bottom: 76px;
}
.info-features .card-info {
    font-size: 14px;
    /* width: 285px; */
    width: calc(33.33% - 15px);
    height: auto;
    min-height: 340px;
    background-color: var(--colorWhite);
    border-radius: 30px;
    border: 1px solid #E5E5E5;
    position: relative;
    box-shadow: 0px 4px 16px 4px rgba(148, 140, 140, 0.04);
    -moz-box-shadow: 0px 4px 16px 4px rgba(148, 140, 140, 0.04);
    -webkit-box-shadow: 0px 4px 16px 4px rgba(148, 140, 140, 0.04);
    /* padding : 52px 26px; */
    padding : 30px;
}
.info-features .card-info .title{
    font-size: 18px;
    font-weight: 600;
    color: var(--colorHazeBlack);
    margin-bottom : 15px
}
.highlight-wrapper {
    display: flex;
    justify-content: space-between;
    padding-top: 90px;
    padding-bottom: 10px;
    margin: 60px 0;
}
.highlight-wrapper .highlight-item {
    width: 285px;
    min-height: 348px;
    background-color: var(--colorWhite);
    border-radius: 8px;
    border: 1px solid #E5E5E5;
    position: relative;
    box-shadow: 0px 4px 16px 4px rgba(148, 140, 140, 0.04);
    -moz-box-shadow: 0px 4px 16px 4px rgba(148, 140, 140, 0.04);
    -webkit-box-shadow: 0px 4px 16px 4px rgba(148, 140, 140, 0.04);
}
.highlight-wrapper .highlight-item .highlight-image {
    width: 191px;
    position: absolute;
    top: -80px;
    left: calc(50% - 95px);
}
.highlight-wrapper .highlight-item .description {
    position: absolute;
    top: 130px;
    width: calc(100% - 60px);
    left: 30px;
}
.highlight-item .content{
    min-height: 100px;
}
.testimonials {
    padding: 30px 0;
}
.testimonials .testimonials-item {
    font-size: 14px;
    font-size: 300;
    border-radius: 5px;
    padding: 24px;
    margin: 15px 0;
    min-height: 220px;
}
.testimonials .description {
    min-height: 100px;
}

.testimonials .slick-dots {
    bottom: 0;
}
.testimonials .slick-dots li {}
.testimonials .slick-dots li button {}
.testimonials .slick-dots li button:before {
    font-size: 10px;
    content: "";
    width: 8px;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 50%;
}
.testimonials .slick-dots li button:hover:before,
.testimonials .slick-dots li.slick-active button:before {
    background-color: var(--colorOrange);
    width: 16px;
    height: 8px;
    border-radius: 8px;
}

.testimonials .slick-slide {
    margin: 0 20px;
}
.testimonials .slick-list {
    margin: 0 -20px;
}
.testimonials .testimonials-item img{
    width: 48px;
    height: 48px;
}
.testimonials .testimonials-item .description{
    margin-bottom: 24px;
    color: var(--colorHazeBlack);
    font-weight: 100;
}
.testimonials .testimonials-item .name{
    font-size: 16px;
    font-weight: 100;
    color: var(--colorHazeBlack);
}
.testimonials .testimonials-item .from{
    font-size: 12px;
    font-weight: 100;
    color: #999999;
}
.box {
    background-color: var(--colorWhite);
    border: 1px solid #EEF0F8;
    padding: 15px;
    border-radius: 10px;
}
.box-features-item {
    font-size: 12px;
    margin: 20px;
}
.box-features-item h5 {
    font-size: 14px;
}
.faq-question {
    padding: 70px 0 45px 0;
}
.faq-question a {
    border: 2px solid transparent;
    transition: all 0.2s ease 0s;
    color: var(--colorTextParagraph);
}
.faq-question a > img {
    width: 64px;
}
.faq-question a.active,
.faq-question a:hover {
    border: 2px solid var(--colorOrange);
    transition: all 0.2s ease 0s;
}

.faq-answer {
    padding: 42px 0;
}
.faq-accordion {}
.faq-accordion .card {
    border: none;
    border-bottom: 1px solid rgb(238, 240, 247);
}
.faq-accordion .card .card-header {
    padding: 0;
    border: 0;
}
.faq-accordion .card .card-header > button {
    font-size: 18px;
    color: var(--colorHazeBlack);
    font-weight: 600;
    padding: 18px 40px;
}
.faq-accordion .card .card-header > button:hover {
    box-shadow: none;
}

.faq-accordion .card .card-header > button[aria-expanded="false"]:before {
    content: "";
    background-image: url('https://contentcreatorblackbook.com/application/tribelio/default/media/img/landingpage/v4/icon-plus.svg');
    background-size: 24px;
    background-position: center;
    width: 24px;
    height: 24px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 16px;
}
.faq-accordion .card .card-header > button.collapsed {}
.faq-accordion .card .card-header > button[aria-expanded="true"]:before {
    content: "";
    background-image: url('https://contentcreatorblackbook.com/application/tribelio/default/media/img/landingpage/v4/icon-minus.svg');
    background-size: 24px;
    background-position: center;
    width: 24px;
    height: 24px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 16px;
}
.faq-accordion .card .collapse {}
.faq-accordion .card .card-body {
    padding: 5px 10px 5px 95px;
}
.form-faq {
    margin-top: 45px;
}
.form-faq .input-group {
    padding: 8px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 2px 2px 8px #E8F0FF;
    -moz-box-shadow: 2px 2px 8px #E8F0FF;
    -webkit-box-shadow: 2px 2px 8px #E8F0FF;
}
.form-faq .input-group .input-group-text {
    border: 0;
    padding: 0 4px;
}
.form-faq .input-group .input-group-prepend {}
.form-faq .input-group input {
    border: 0;
    font-size: 16px;
    padding: 7px;
    line-height: 1;
}
.form-faq .input-group .input-group-append {}
.form-faq .input-group .input-group-append .btn {
    border-radius: 8px;
    font-size: 14px;
}
.form-auth {
    font-size: 14px;
}
.form-auth .form-group {
    margin-bottom: 24px;
}
.form-auth .form-group .control-box {
    padding-left: 0;
}
.form-auth .form-group label:not(.custom-control-label) {
    font-size: 16px;
    font-weight: 600;
}
.form-auth .form-group .control-box label {
    font-size: 16px;
    display: flex;
    padding: 15px;
    border: 1px solid #eeeeee;
    border-radius: 5px;
    cursor: pointer;
}
.form-auth .form-group input.form-control,
.form-auth .form-group select.form-control {
    height: 55px;
    border: 1px solid #EEF0F8;
    font-size: 16px;
}

.form-auth .form-group .btn {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-auth .input-group.input-merge {
    border: 1px solid #EEF0F8;
    border-radius: 5px;
}
.form-auth .input-group.input-merge input {
    border: none;
}
.form-auth .btn-password {
    border: 0;
    background-color: transparent;
    cursor: pointer;
    padding: 15px;
    outline: none;
    color: #aaaaaa;
}
.custom-checkbox {}
.custom-checkbox .custom-control-label::before {
    background-color: rgba(237, 105, 44, 0.3);
    border: none;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: rgba(237, 105, 44, 0.3);
    background-image: url('https://contentcreatorblackbook.com/application/tribelio/default/media/img/landingpage/v4/icon-fill-checked.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70%;
    border: none;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;

}
.custom-radio.control-box .custom-control-label::before {
    border: 1px solid rgba(238, 238, 238, 1);
    width: 24px;
    height: 24px;
    position: unset;
    margin-right: 24px;
}
.custom-radio.control-box .custom-control-input:checked~.custom-control-label {
    border: 1px solid var(--colorOrange50Percent);
}
.custom-radio.control-box .custom-control-input:checked~.custom-control-label::before {
    background-color: #fff;
    background-image: url('https://contentcreatorblackbook.com/application/tribelio/default/media/img/landingpage/v4/icon-radio-active.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: none;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}
.pricing-top {
    padding-top: 80px;
}
.pricing-bottom {
    padding-bottom: 50px;
}

.pricing-wrapper-top {
    border-top: 1px solid #eeeeee;
    border-right: 1px solid #eeeeee;
    border-left: 1px solid #eeeeee;
    border-radius: 24px 24px 0 0;
    background-color: var(--colorWhite);
    min-height: 405px;
    margin-top: 200px;
    position: relative;
}
.package-option-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
    position: absolute;
    top: -180px;
    width: 100%;
}
.package-option-group .option-item {
    width: 285px;
    height: 339px;
    padding: 25px;
    text-align: center;
    border-radius: 16px;
    background-color: var(--colorWhite);
    position: relative;
    box-shadow: 2px 2px 12px #E8F0FF;
    -moz-box-shadow: 2px 2px 12px #E8F0FF;
    -webkit-box-shadow: 2px 2px 12px #E8F0FF;
}
.package-option-group .option-item.populer {
    width: 325px;
    height: 490px;
}
.package-option-group .option-item.populer:hover{
    box-shadow: 0px 8px 40px rgba(237, 105, 44, 0.35);
}
.package-option-group .option-item .btn {
    font-size: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
}
.package-option-group .option-item .header {
    opacity: 0.7;
}
.package-option-group .option-item .body {
    font-size: 28px;
    position: absolute;
    width: calc(100% - 50px);
    bottom: 37.5%;
}
.package-option-group .option-item .body .text-year, .package-option-group .option-item.populer .header p {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.7;
    color: #707070 !important;
}
.package-option-group .option-item.populer.active .body .text-year{
    color: var(--colorWhite) !important;
    opacity: 0.7;
}
.package-option-group .option-item.populer.active .header p {
    color: var(--colorWhite) !important;
    opacity: 1;
}
.package-option-group .option-item .footer {
    position: absolute;
    width: calc(100% - 50px);
    bottom: 25px;
    margin: 0;
}
.package-option-group .option-item .footer small {
    opacity: 0.7;
}

.pricing-wrapper-bottom {
    border-right: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    border-left: 1px solid #eeeeee;
}
.widget-pricing-calculate {
    padding: 60px;
}
.pricing-result {
    padding: 60px;
}
.pricing-result .header {
    text-align: center;
}
.pricing-result .body {
    margin: 60px 0;
}
.pricing-result .body .text-year {
    opacity: 0.25;
    text-align: center;
}
.pricing-result .footer {}
.pricing-result .footer .text-help {
    margin-top: 10px;
    font-size: 10px;
    line-height: 1.175;
    display: block;
}
.widget {
    margin-bottom: 20px;
}
.widget .widget-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
}
.widget.blog-widget .widget-title {
    font-size: 24px;
    font-weight: 800;
}
.widget .widget-content {
    padding-bottom: 10px;
}
.widget.blog-widget .widget-content h3 {
    font-size: 21px;
}
.link-list {}
.link-list li {
    margin-bottom: 16px
}
.link-list li a {
    font-weight: 600;
    color: var(--colorTextParagraph);
    position: relative;
    padding-left: 40px;
    display: inline-block;
}
.link-list li a:hover,
.link-list li a.active {
    color: var(--colorOrange);
    text-decoration: underline;
}
.link-list li a:before {
    content: "";
    width: 20px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('https://contentcreatorblackbook.com/application/tribelio/default/media/img/landingpage/v4/arrow-right-long.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center 7px;
}
.article {
    padding-right: 40px;
}
.menu-download-footer {
    margin: 22px 0;
}
.menu-download-footer li {

}
.menu-download-footer li:first-child{
    padding-left: 0;
}
.menu-download-footer li:last-child{
    padding-right: 0;
}
.menu-download-footer li a {
    font-size: 11px;
    color: #fff;
    padding: 0 10px;
}
.menu-download-footer li a:hover {
    text-decoration: underline;
}
#section-download-footer .copyright {
    margin: 22px 0;
}
.home-image-1 {
    width: 889px;
}
.pricing-area-wrapper {
    padding: 60px 60px 20px 60px;
}
.pricing-area-wrapper .pricing-hint-wrapper {
    padding: 24px;
    display: flex;
    align-items: center;
}
.pricing-area-wrapper .pricing-hint-wrapper img {}
.pricing-area-wrapper .pricing-hint-wrapper .media-body {
    display: flex;
    align-items: center;
}
table.table-pricing {}
table.table-pricing thead {}
table.table-pricing thead tr th {}
.table.table-pricing .thead-light th {
    background-color: var(--colorBgZebra);
    border-radius: 12px;
    border-bottom: 0;
    border-top: 0;
}

table.table-pricing tbody tr td {}
table.table-pricing thead tr th:first-child,
table.table-pricing tbody tr td:first-child {
    width: 55%;
    padding: 22px 35px;
    font-size: 14px;

}
table.table-pricing thead tr th:nth-child(n+2),
table.table-pricing tbody tr td:nth-child(n+2) {
    width: 15%;
    padding: 22px 25px;
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
}
table.table-pricing tbody tr:first-child td {
    border-top: 0;
}
.list-pricing-option {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.list-pricing-option:before {
    content: "";
    position: absolute;
    width: calc(100% - 40px);
    height: 6px;
    background-color: rgb(236, 236, 241);
    top: 10px;
    left : 20px;

}
.list-pricing-option li {
    width: 100%;
    text-align: center;
}
.list-pricing-option li a {
    font-size: 12px;
    color: inherit;
    position: relative;
    /*padding-top: 35px;*/
    display: block;
    width: 100%;
    height: 27px;
}
.list-pricing-option li a span.count-member-label {
    position: absolute;
    left: 14px;
    bottom: -25px;
}
.list-pricing-option li a:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: rgb(236, 236, 241);
    top: 0;
    left: calc(50% - 13px);
}
.list-pricing-option li a.active:before {
    background-color: var(--colorOrange);
}
.list-pricing-option li a:after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--colorWhite);
    top: 2px;
    left: calc(50% - 11px);
}
.list-pricing-option li a.active:after{
    background-color: var(--colorOrange);
    height: 6px;
    width: 100%;
    border-radius: 0;
    top: 10px;
}
.list-pricing-option li a.active.selected:before{
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--colorWhite);
    top: 0;
    left: calc(50% - 13px);
    box-shadow: 0px 0px 5px var(--colorOrange);
    -moz-box-shadow: 0px 0px 5px var(--colorOrange);
    -webkit-box-shadow: 0px 0px 5px var(--colorOrange);
}
.list-pricing-option li a.active.selected:after{
    background-color: var(--colorOrange);
    background-image: url(https://contentcreatorblackbook.com/application/tribelio/default/media/img/landingpage/v4/icon-check-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    content: "";
    width: 22px;
    height: 22px;
    top: 2px;
    border-radius: 50%;
}
.list-pricing-option li a.active {}

.compare-price-table {
    height: 0;
    opacity: 0;
    transition: all 0.4s ease 0s;
    overflow: hidden;
}
.compare-price-table.show {
    height: auto;
    opacity: 1;
    transition: all 0.4s ease 0s;
}
/* End Element List*/

/* Section */
.section-global {
    padding: 70px 0;
}
.section-global.bg-zebra {
    background-color: rgb(252,252,252);
}
#section-main {
    padding: 60px 0;
}
#section-home-higlight {
    padding: 60px 0;
    text-align: center;
    /*    background: rgb(255,255,255);
        background: -moz-linear-gradient(0deg, rgba(229,229,229,0.007440476190476164) 0%, rgba(237,105,44,0.4) 40%, rgba(237,105,44,0.4023984593837535) 60%, rgba(229,229,229,0) 100%);
        background: -webkit-linear-gradient(0deg, rgba(229,229,229,0.007440476190476164) 0%, rgba(237,105,44,0.4) 40%, rgba(237,105,44,0.4023984593837535) 60%, rgba(229,229,229,0) 100%);
        background: linear-gradient(0deg, rgba(229,229,229,0.007440476190476164) 0%, rgba(237,105,44,0.4) 40%, rgba(237,105,44,0.4023984593837535) 60%, rgba(229,229,229,0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e5e5e5",endColorstr="#e5e5e5",GradientType=1);*/
}
#section-home-testimonial {
    padding: 160px 0 70px 0;
}
#section-home-testimonial .testimonial-body {
    min-height: 500px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    background-color: rgb(250, 250, 250);
    background-image: url('https://contentcreatorblackbook.com/application/tribelio/default/media/img/landingpage/v4/asset/tribelio-award-nfc-author.jpg');
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: left center;
}
#section-join {
    background-image: url('https://contentcreatorblackbook.com/application/tribelio/default/media/img/landingpage/v4/bg-section-join-2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: var(--colorWhite);
    height: auto;
    min-height: 400px;
    align-items: center;
    display: flex;
}
#section-join-features {
    background-image: url('https://contentcreatorblackbook.com/application/tribelio/default/media/img/landingpage/v4/bg-section-join-features.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--colorWhite);
    height: auto;
    min-height: 400px;
    align-items: center;
    display: flex;
}
#section-contact-us {
    padding: 20px 0;
    height: auto;
    min-height: 430px;
}
#section-contact-us img {
    width: 430px;
}

#section-features-greeting {
    background: linear-gradient(0deg, rgba(237, 105, 44, 0.15) 0%, rgba(255, 255, 255, 0.15) 50%);
    min-height: 500px;
    padding-top: 50px;
}
#section-features-main {
    background-color: #fafafa;
    padding: 20px 0;
}
#section-faq-greeting {
    min-height: 379px;
    padding: 80px 0;
    background-image: url('https://contentcreatorblackbook.com/application/tribelio/default/media/img/landingpage/v4/asset/faq-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}
#section-login {
    min-height: 1024px;
    background-image: url(https://contentcreatorblackbook.com/application/tribelio/default/media/img/landingpage/v4/bg-login.jpg);
    background-repeat: no-repeat;
    /*background-size: 480px 1024px;*/
    background-size: 33% 100%;
    background-position: left center;
}
#section-register {
    min-height: 1024px;
    /* background-image: url(https://contentcreatorblackbook.com/application/tribelio/default/media/img/landingpage/v4/bg-register.jpg); */
    background-repeat: no-repeat;
    /*background-size: 480px 1093px;*/
    background-size: 33% 100%;
    background-position: left center;
}
#section-pricing-main {}
#section-pricing-footer {
    background-image: url('https://contentcreatorblackbook.com/application/tribelio/default/media/img/landingpage/v4/bg-pricing-footer.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--colorWhite);
    height: auto;
    min-height: 550px;
    align-items: center;
    display: flex;
}
#section-page {
    padding: 80px 0;
    background-image: url('https://contentcreatorblackbook.com/application/tribelio/default/media/img/landingpage/v4/bg-page.jpg');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top center;
    font-weight: 300;
}

#section-study-greeting {
    min-height: 500px;
    padding: 80px 0;
    background-image: url('https://contentcreatorblackbook.com/application/tribelio/default/media/img/landingpage/v4/asset/dr-art.jpg?v=1');
    background-repeat: no-repeat;
    background-size: cover;
}
#section-study-greeting.case-nfc {
    background-color: #0F0F0F;
    background-image: url('https://contentcreatorblackbook.com/application/tribelio/default/media/img/landingpage/v4/asset/nfc-2.jpg');
    color: #fff;
}
#section-download-main {
    min-height: 750px;
    padding: 80px 0;
    background-image: url('https://contentcreatorblackbook.com/application/tribelio/default/media/img/landingpage/v4/asset/bg-download.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}
#section-download-footer {
    background-color: var(--colorHazeBlack);
    color: var(--colorWhite);
    font-size: 11px;
}
/* End Section */

/* Footer */
#footer {
    background-color: var(--colorHazeBlack);
    color: var(--colorWhite);
    padding: 60px 0;
    background-image: url('https://contentcreatorblackbook.com/application/tribelio/default/media/img/landingpage/v4/tribelio-logo-dark.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-blend-mode: overlay;
    border-bottom: 3px solid var(--colorOrange);
}
#footer a {
    color: var(--colorWhite);
    line-height: 1.5;
}
.footer-widget {
    margin-top: 10px;
    font-size: 14px;
}
.footer-widget h5 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 30px;
}
.footer-widget h6 {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 17px;
}
.footer-widget ul.menu {}
.footer-widget ul.menu li {
    margin: 12px 0;
}
.footer-widget ul.menu li a {}
.footer-widget ul.menu li a:hover{
    text-decoration: underline;
}
.footer-widget img.logo {
    max-width: 155px;
}

.language-availables {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    font-size: 12px;
}
.language-availables li {
    margin-right: 20px;
    position: relative;
}
.language-availables li:before {
    content: "";
    background-color: #fff;
    height: 100%;
    width: 1px;
    position: absolute;
    right: -10px;
}
.language-availables li:last-child {
    margin-right: 0;
}
.language-availables li:last-child::before {
    content: none;
}
.language-availables li a {
    display: flex;
    align-items: center;
}
.language-availables li a.active,
.language-availables li a:hover {
    font-weight: 800;
}
.language-availables li a > img {
    margin-right: 5px;
}
/* End Footer */

/*  Blog */
.blog-area {
    font-size: 14px;
    padding-right: 30px;
    line-height: 1.75;
}
.blog-wrapper {
    border-bottom: 1px solid #EEF0F8;
    margin-bottom: 24px;
    /* padding-bottom: 24px; */
    padding-bottom: 35px;
}
.blog-wrapper .image > img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 10px;
}
.blog-wrapper .image.preview > img {
    height: 280px;
}
.blog-wrapper .content {}
.blog-wrapper .content .title {
    line-height: 1.1875;
}
.blog-wrapper .blog-info {
    display: flex;
    align-items: center;
}
.blog-wrapper .blog-info li {
    margin-right: 28px;
}
.blog-wrapper .blog-info li:last-child {
    margin-right: 0;
}
.blog-wrapper .blog-info li .info-item {
    display: flex;
    align-items: center;
}
.blog-navigator {}
.blog-navigator a .rounded {

}
.link-tags {
    display: flex;
    flex-wrap: wrap;
}
.link-tags li {}
.icon.icon-blog-share {
    width: 48px !important;
    height: 48px !important;
    border: 1px solid var(--colorOrange);
    display: inline-block;
    border-radius: 50%;
}
.icon.icon-blog-share:before {
    width: 16px;
    height: 18px;
    left: 13px;
    top: 14px;
    position: absolute;
}
.blog-related {
    width: 100%;
    height: 115px;
    position: relative;
    display: block;
}
.blog-related img {
    position: absolute;
    width: 100%;
    height: inherit;
    object-fit: cover;
    border-radius: 10px;
}
.blog-related .title {
    position: absolute;
    font-size: 16px;
    color: #fff;
    width: calc(100% - 32px);
    bottom: 16px;
    left: 16px;
    right: 16px;
    font-weight: 700;
}
.pagination-wrapper {}
ul.pagination {}
ul.pagination li.page-item {}
ul.pagination li.page-item a.page-link {
    font-size: 14px;
    color: #bbbbbb;
    padding: 12px 16px;
    border: 0;
    font-weight: 800;
}
ul.pagination li.page-item.prev a.page-link,
ul.pagination li.page-item.next a.page-link {
    font-weight: 500;
}
ul.pagination li.page-item.prev:hover a.page-link,
ul.pagination li.page-item.next:hover a.page-link {
    background-color: transparent;
}
ul.pagination li.page-item.active a.page-link,
ul.pagination li.page-item:hover a.page-link {
    background-color: #FAFAFA;
    color: #000;
}
.modal.modal-tribe-confirmation {}
.modal.modal-tribe-confirmation .modal-dialog{
    max-width: 426px;
    top: 50%;
    transform: translateY(-50%);
}
.modal.modal-rounded .modal-dialog .modal-content, .modal-dialog.modal-rounded .modal-content {
    border-radius: 10px;
}
.modal-dialog .modal-content .modal-body {
    min-height: 110px;
}
.modal.modal-tribe-confirmation button.close {
    text-shadow: none;
    font-size: 30px;
    font-weight: 300;
    line-height: 0.5;
}
ul.sharer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    outline: none;
}
ul.sharer-list li {
    text-align: center;
}
ul.sharer-list span.label {
    font-size: 10px;
}
.btn-nostyle {
    border: none;
    padding: 0;
    outline: none;
    cursor: pointer;
    background-color: transparent;
}
/*  End Blog */
.country-code-select {}
.country-code-select .form-control.selectize-control {

}
.country-code-select .form-control.selectize-control .selectize-input {
    width: 80px;
    font-size: 16px;
    height: 55px;
    border: 0;
    padding: 16px 10px;
    outline: none;
    border-right: 1px solid #f0f0f0;
    border-radius: 0;
}
.country-code-select .form-control.selectize-control .selectize-dropdown {
    min-width: 320px;
    font-size: 16px;
}
.country-code-select .form-control.selectize-control .selectize-dropdown .selectize-dropdown-content {
    /* width: inherit; */
}
.country-code-select .form-control.selectize-control .selectize-dropdown .selectize-dropdown-content .item-option {
    padding: 5px 16px;
}
.register-video-wrapper {
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.register-video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.alert.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.modal-dialog.modal-register-confirmation{
    max-width: 450px;
    margin-top: 170px;
}
.modal .modal-register-confirmation .modal-content .content-confirmation{
    padding: 0px 50px;
}
.modal .modal-register-confirmation .modal-content .button-area{
    padding-bottom: 20px;
}
.modal .modal-register-confirmation .btn-confirm {
    background-color: #B1B1B1;
    color: #fff !important;
    margin: 0px 15px;
    width: 120px;
}
.modal .modal-register-confirmation .btn-confirm.active {
    background-color: #ED692C;
    color: #fff;
}
.badge-warning{
    background: #F2A83E;
    border-radius: 10px;
    color: var(--colorWhite);
}


/*  Extra large devices (large desktops, 1200px and up)     */
@media (min-width: 1200px) {

}

/*  Large devices (desktops, 992px and up)      */
@media (min-width: 992px) {

}

/*  Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .highlight-wrapper .highlight-item{
        height: 420px;
    }
    .highlight-wrapper .highlight-item .description h2{
        height: 50px;
    }
    .highlight-item .content{
        min-height: 140px;
    }
    /* .info-features{
        flex-direction: column;
        padding: 0px 10px;
    }
    .info-features .card-info{
        width: 100%;
        margin-bottom: 15px;
    } */

}
@media (max-width: 767.98px) {
    .info-features{
        flex-direction: column;
        padding: 0px 10px;
    }
    .info-features .card-info{
        width: 100%;
        margin-bottom: 15px;
    }
}

/*  Small devices (landscape phones, 576px and up)      */
@media (min-width: 576px) {

}

/* Extra small devices (portrait phones, less than 576px)   */
@media (max-width: 575.98px) {
    .list-item-blog{
        margin-bottom: 15px;
    }
    /* .info-features{
        flex-direction: column;
        padding: 0px 10px;
    }
    .info-features .card-info{
        width: 100%;
        margin-bottom: 15px;
    } */
    .navbar-expand-lg .navbar-nav.main-navmenu .nav-item {
        margin-bottom: 10px;
        margin-right: 0;
    }
    .center-mobile {
        text-align: center;
    }
    .center-mobile .pr-5 {
        padding-right: 0;
    }
    .highlight-wrapper {
        display: block;
    }
    .highlight-wrapper .highlight-item {
        width: 100%;
        margin-bottom: 100px;
    }
    #section-home-testimonial .testimonial-body {
        background-image: none;
    }
    .footer-widget {}
    .footer-widget .app-list-inline {
        justify-content: space-between;
    }
    #footer {
        padding: 20px 0;
    }

    .box {
        margin-bottom: 1.5rem;
    }
    #section-join-features {
        padding: 30px 0;
    }
    #section-download-footer {
        padding: 10px 0;
    }
    .menu-download-footer {
        margin: 10px 0;
        justify-content: center;
    }
    #section-download-footer .copyright {
        margin: 10px 0;
    }
    .article {
        padding-right: unset;
    }
    #section-login,
    #section-register {
        background-image: none;
        min-height: auto;
    }
    .pricing-wrapper-top {
        margin-top: 20px;
    }
    .package-option-group {
        position: inherit;
        top: 0;
        display: block;
        padding: 10px;
    }
    .package-option-group .option-item {
        width: 100%;
        margin: 0px auto 30px auto;
    }
    .package-option-group .option-item.populer {
        width: 100%;
    }
    .pricing-area-wrapper {
        padding: 10px;
    }
    .pricing-area-wrapper .pricing-hint-wrapper {
        padding: 24px;
        display: block;
        text-align: center;
    }
    .pricing-area-wrapper .pricing-hint-wrapper img {}
    .pricing-area-wrapper .pricing-hint-wrapper .media-body {
        display: block;
    }
    .pricing-area-wrapper .pricing-hint-wrapper .media-body .btn {
        margin-top: 20px;
    }
    .widget-pricing-calculate {
        padding: 24px;
    }
    .list-pricing-option {
        margin-top: 40px;
    }
    .list-pricing-option li a span.count-member-label {
        position: absolute;
        left: 5px;
    }
    .list-pricing-option li:nth-child(odd) a span.count-member-label {
        bottom: -25px;
    }
    .list-pricing-option li:nth-child(even) a span.count-member-label {
        top: -25px;
    }
    table.table-pricing {
        width: 600px;
    }
    table.table-pricing thead {}
    table.table-pricing thead tr th {}
    .table.table-pricing .thead-light th {
        background-color: var(--colorBgZebra);
        border-radius: 12px;
        border-bottom: 0;
        border-top: 0;
    }

    table.table-pricing tbody tr td {}
    table.table-pricing thead tr th:first-child,
    table.table-pricing tbody tr td:first-child {
        width: 300px;
        padding: 10px;
        font-size: 14px;
        vertical-align: middle;

    }
    table.table-pricing thead tr th:nth-child(n+2),
    table.table-pricing tbody tr td:nth-child(n+2) {
        width: 100px;
        padding: 10px;
        font-size: 14px;
        text-align: center;
        line-height: 1.5;
        vertical-align: middle;
    }
    table.table-pricing tbody tr:first-child td {
        border-top: 0;
    }
    #section-pricing-footer {
        min-height: fit-content;
        padding: 24px;
    }
    .blog-area {
        padding-right: 0;
    }
    .language-availables {
        position: unset;
        display: flex;
        justify-content: center;
    }
}