
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html body{
    max-width: 100%;
    overflow-x: hidden;
    font-family: "Poppins";
    font-weight: 300;
    color:#000000;
}

html body.black-bg {
    color: #fff;
    background: #1f1f1f;
}

/* navbar */
.navbar{
    height: 70px;
}

.navbar .menu-links {
    font-size: 0.9em;
}

.black-btn {
    color: white;
    background-color: black;
    box-shadow: 0 3px 3px 0 rgba(123, 128, 154, 0.15), 0 3px 1px -2px rgba(123, 128, 154, 0.2), 0 1px 5px 0 rgba(123, 128, 154, 0.15);
}

.black-btn:hover {
    color: white;
    background-color: black;
    box-shadow: 0 14px 26px -12px rgba(123, 128, 154, 0.4), 0 4px 23px 0 rgba(123, 128, 154, 0.15), 0 8px 10px -5px rgba(123, 128, 154, 0.2);
}



.yellow-btn {
    color: #000;
    background-color: #f9dc5c;
    box-shadow: 0 3px 3px 0 rgba(123, 128, 154, 0.15), 0 3px 1px -2px rgba(123, 128, 154, 0.2), 0 1px 5px 0 rgba(123, 128, 154, 0.15);
}

.yellow-btn:hover {
    color: #000;
    background-color: #f9dc5c;
    box-shadow: 0 14px 26px -12px rgba(123, 128, 154, 0.4), 0 4px 23px 0 rgba(123, 128, 154, 0.15), 0 8px 10px -5px rgba(123, 128, 154, 0.2);
}


.nav-text{
    position: relative;
    top: 2px;
}


.navbar-brand a {
    font-weight: 700;
    font-size: 1.4em;
}

.navbar-brand a:hover  {
    color: #444;
}

.navbar-brand img {
    width: 50px;
    height: auto;
    border-radius: 50px;
}

.navbar a.nav-link {
    padding-top: 20px;
    display: inline-block;
    color: #666666;
    text-transform: uppercase;
    font-size: 0.9em;
    border-bottom: 2px solid rgba(0,0,0,0);
    padding-bottom: 20px;
}

.navbar a.nav-link:hover,
.navbar a.nav-link.active {
    color: #000000;
    border-bottom: 2px solid #000;
}



.card .nav-item a {
    text-decoration: none;
}

.dropdown-item {
    font-weight: 300;
    color: #444;
}

/* main body */
.main{
    margin-block: 50px;
}
.content-box{
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.content-box .card-text,
.brand-tagline {
    padding: 15px 0;
    white-space: pre-line;
}

.icon{
    vertical-align: middle;
}

.material-icons-outlined {
    font-size: 18px;
}

.icon-text {
    color: #888;
    font-size: 0.8em;
}

.board .icon-text {
    font-size: 0.8em;
}

.live-icon {
    cursor: pointer;
}

.live-icon.icon-text:hover{
    color: #222;
}

.dot-list{
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    margin-top: -5px;
    float: right;
    cursor: pointer;

}
.dot-list li:nth-child(2) , .dot-list li:nth-child(3){
    margin-top: -15px;
}
.row-2 , .row-3{
    margin-top: 20px;
}

.overlay {
    margin-bottom: 0;
    padding: 0 29px 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    border-radius: 2px;
  }

.overlay li {
    display: flex;
    align-items: center;
    padding-left: 15px;
}

.overlay a,
.icon-link a {
    text-decoration: none;
}

.modal .icon-link {
    text-align: right;
}

.modal .ReactTags__remove,
.modal .ReactTags__add {
    cursor: pointer;
    font-style: normal;
    font-weight: 800;
    font-size: 13px;
    line-height: 14px;
    color: #171734;
    background-color: #ced4da;
}

.form-label .label-text {
    font-style: normal;
    color:#444444;
    margin-bottom: 0.3rem;
    font-size: 0.95em;
    font-weight: 500;
    text-transform: uppercase;

}

form .sub-text {
    color:#444;
    font-size: 0.8em;
}

.form-control {
    color: #222;
    font-size: 0.9em;
    font-weight: 300;
}

.board-name {
    cursor: pointer;
    color: #000000;
    font-size: 1.2em;
}

.board-name:hover {
    color: #444;
}

.navbar-toggler{
    box-shadow: none !important;
    color: #000;
}

body.black-bg .navbar-toggler {
    color: #fff;
}

.button-text{
    padding: 10px 15px;
    font-style: normal;
    border-radius: 25px;
}


@media screen and (max-width: 767px) {

    .main{
        margin-block: 20px;
    }
    .navbar{
        height: auto;
    }
    .active{
        padding-bottom: 10px;
    }

}
@media (min-width: 768px) and (max-width: 991px) {

    .navbar{
        height: auto;
    }
    .active{
        padding-bottom: 10px;
    }

}

@media screen and (max-width: 500px) {

    .form-contributers {
        width: 70%;
    }
}
@media screen and (max-width: 400px) {

    .form-contributers {
        width: 85%;
    }
}

/* Board 2 page CSS */

.reactions-list{
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 0;
}

.line{
    margin-top: 25px;
}
.content-box-2{
    position: relative;
    background-color: white;
    padding: 15px;
    border-radius: 3px;
    box-shadow: 0 14px 26px -12px rgba(123, 128, 154, 0.4), 0 4px 23px 0 rgba(123, 128, 154, 0.15), 0 8px 10px -5px rgba(123, 128, 154, 0.2);
}
.content-box-2 p {
    color: #444444;
    font-size: 0.85rem;
}

a {
    color: #222;
    text-decoration: underline;
}

.navbar a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #666666;
    text-decoration: none;
}

footer a {
    text-decoration: none;
    color: #444;
}

footer a:hover {
    text-decoration: underline;
    color: #222;
}

body.black-bg a,
body.black-bg .navbar a {
    color: #fff;
}

body.black-bg a:hover {
    color: #efefef;
}


.modal .ReactTags__tag {
    padding: 5px;
    background-color: #efefef;
    border-radius: 3px;
    margin: 2px;
    position: relative;
    display: flex;
    font-size: 0.9em;
}

.modal .ReactTags__tagInput input {
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: none;
}

.modal .ReactTags__tagInput {
    padding: 3px;
    margin: 2px;
    width: auto;
    border: 1px solid #efefef;
}

.modal .ReactTags__remove,
.modal .ReactTags__add {
    border: none;
    background-color: #cdcdcd;
    margin-left: 5px;
    padding: 5px;
}

.hidden {
    display: none;
}

.show-password {
    position: absolute;
    right: 10px;
    top: 30px;
    font-size: 25px;
    opacity: 0.6;
}

table th,
.page-title,
.modal-title,
.button-text,
.card-header h5,
.side-nav-link {
    text-transform: uppercase;
    font-weight: 300;
}

.card-header h5 {
    font-size: 1.1em;
}


.board-sub-title {
    color: #444;
}

.form-label .text-primary,
#contacts-msg.text-primary,
.form-group .text-primary {
    color: #bf0e46 !important;
    font-size: 0.9em;
}

.home .label,
.content-box .card-label {
    text-transform: uppercase;
    padding: 5px 10px;
    background: #000;
    color: #fff;
    border-radius: 25px;
    font-size: 0.6em;
    font-weight: 500;
}

body.black-bg .home .label,
body.black-bg .board.preview .content-box .card-label,
body.black-bg .board.publish .content-box .card-label {
    background: #fff;
    color: #000;
}

.content-box .card-label {
    font-size: 0.7em;
}

.home .brand-name,
.home .service-name {
    font-size: 2em;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
}

.home .brand-name {
    font-size: 2.5em;
}

.home .brand-name .sub-name {
    font-weight: 500;
}

.narra-link {
    font-weight: 700;
}


.home h5 {
    font-size: 1.1rem;
    font-weight: 300;
    text-transform: uppercase;
}

.footer p {
    font-size: 0.9em;
}

body.black-bg .footer p {
    color: #efefef;
}

table tr td {
    font-size: 0.9em;
}

hr.horizontal {
    background-color: transparent;
}

hr.horizontal.dark {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}

body.black-bg hr.horizontal.dark {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
}

.swal-text {
    font-weight: 300 !important;
}




/* The switch - the box around the slider */
.switch {
    position: absolute;
    right: 20px;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #a5dc86;
}

input:focus + .slider {
    box-shadow: 0 0 1px #a5dc86;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.navbar.message {
    height: auto;
    min-height: 50px;
    background: #f9dc5c;
    color: #000;
}


.terms-list ol.main-list,
.terms-list ol.sub-list
{ counter-reset: item }

.terms-list li.sub-list
{ display: block }

.terms-list li.main-list,
.terms-list li.sub-list:before
{ content: counters(item, ".") ". "; counter-increment: item; }

.wow {
    visibility: hidden;
}

.wow p,
.wow .card-text {
    max-width: 560px;
}

.how .wow p {
    max-width: 100%;
}

.blink {
    animation: blink 1.5s infinite;
    font-weight: 300;
}
@keyframes blink{
    to { opacity: .0; }
}

.gvideo i {
    font-size: 96px;
    top: 35%;
    background: rgba(255,255,255,0.5);
    border-radius: 50px;
    opacity: 0.9;
    box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
}

a.gvideo:hover {
    color: #000;
}

.satisfy-font {
    font-family: 'Satisfy', cursive;
}

.f-48 {
    font-size: 48px;
}