.container-fluid {
    padding-left: 0px;
    padding-right: 0px;
    margin-left: 0px;
    margin-right: 0px;
}

.wrapper {
    margin-left: 20px;
    margin-right: 20px;
}

.unwrapper {
    padding-left: 0px;
    padding-right: 0px;
}

.footer {
    padding-left: 15px;
    padding-right: 15px;
}

.cause-link-white, .cause-link-black {
    text-decoration: none;
    color: #bd0006;
}

.cause-link-white:hover {
    text-decoration: none;
    color: white;
}

.cause-link-black:hover {
    text-decoration: none;
    color: black;
}

.footer-link-grey {
    text-decoration: none;
    color: #b8b7b7;
}

.footer-link-grey:hover {
    text-decoration: none;
    color: white;
}


/* for phone */
@media only screen and (max-width: 600px) {
    #logo {
        height: 25px;
    }

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

    .navbar-toggler {
        padding-top: 2px;
        padding-bottom: 2px;
        padding-left: 6px;
        padding-right: 6px;
    }

    .howto-icon {
        width: 85px;
    }
}

/* for desktop */
@media only screen and (min-width: 601px) {
    #logo {
        height: 35px;
    }

    .howto-icon {
        width: 100px;
    }
}

.separator-thin {
    display: block;
    width: 100%;
    margin: 1.5em auto 1.25em;
    position: relative;
    height: 1px;
}

.separator-thin.dark {
    background: #e8e8e8;
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .25) 35%, rgba(0, 0, 0, .25) 70%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(0, 0, 0, 0)), color-stop(35%, rgba(0, 0, 0, .25)), color-stop(70%, rgba(0, 0, 0, .25)), color-stop(100%, rgba(0, 0, 0, 0)));
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .25) 35%, rgba(0, 0, 0, .25) 70%, rgba(0, 0, 0, 0) 100%);
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .25) 35%, rgba(0, 0, 0, .25) 70%, rgba(0, 0, 0, 0) 100%);
    background: -ms-linear-gradient(left, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .25) 35%, rgba(0, 0, 0, .25) 70%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .25) 35%, rgba(0, 0, 0, .25) 70%, rgba(0, 0, 0, 0) 100%);
}

.separator-thin.light {
    background: rgba(255, 255, 255, .5);
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .5) 35%, rgba(255, 255, 255, .5) 70%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0)), color-stop(35%, rgba(255, 255, 255, .5)), color-stop(70%, rgba(255, 255, 255, .5)), color-stop(100%, rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .5) 35%, rgba(255, 255, 255, .5) 70%, rgba(255, 255, 255, 0) 100%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .5) 35%, rgba(255, 255, 255, .5) 70%, rgba(255, 255, 255, 0) 100%);
    background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .5) 35%, rgba(255, 255, 255, .5) 70%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .5) 35%, rgba(255, 255, 255, .5) 70%, rgba(255, 255, 255, 0) 100%);
}

.btn-rounded {
    border-radius: 30px;
}

button:disabled {
   cursor:not-allowed;
}


/* ---------------------------------------------------
    NAVBAR STYLE
----------------------------------------------------- */

a,
a:hover,
a:focus {
    text-decoration: none;
    transition: all 0.3s;
    color: rgb(170,28,32);
}

.navbar {
    background: #fff;
    border: none;
    border-radius: 0;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    padding: .75rem 1rem;
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

#sidebar {
    width: 260px;
    position: fixed;
    top: 0;
    right: -260px;
    height: 100vh;
    z-index: 999;
    background: #ffffff;
    color: #fff;
    transition: all 0.3s;
    overflow-y: scroll;
}

#sidebar.active {
    right: 0;
    box-shadow: -3px 3px 3px rgba(0, 0, 0, 0.2);
}

#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
	color: #b3292c;
    background: none;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#dismiss:hover {
background: none;
    color: #b3292c;
}

.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.overlay.active {
    display: block;
    opacity: 1;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: none;
}

#sidebar .sidebar-items {
    padding-left: 15px;
}

#sidebar .sidebar-items div>div>p {
    color: #b3292c;
    padding: 10px;
}

#sidebar .main-items>div>a {
    color: #000000;
    padding: 10px;
    font-size: 1.1em;
    display: block;
}

.main-items div:hover>a>b {
    color: #b3292c;
}

.main-items div.active>a>b,
a[aria-expanded="true"] {
    color: #b3292c;
}

.item-hoverable {
	filter: grayscale();
}


.item-hoverable:hover {
	filter: none;
	transition: filter .2s linear;
}

#mCSB_1{
    height: 100vh;
}
#mCSB_1_container{
    height: inherit;
    /* position: relative; */
}
/* toggle */
.switch-toggle {
    cursor: pointer;
    position: relative;
    display: inline-block;
    width: 60px;
    height: 28px;
    background-color: grey;
    border-radius: 20px ;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 0;
}
.switch-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider-toggle:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}  
input:checked + .slider-toggle {
    background-color: #2196F3;
}
input:focus + .slider-toggle {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider-toggle:before {
-webkit-transform: translateX(32px);
-ms-transform: translateX(32px);
transform: translateX(32px);
}
.slider-toggle.round {
border-radius: 34px;
}

.slider-toggle.round:before {
border-radius: 50%;
}
/* toggle end */

.darkmode-label{
    color:black;
}

.darkmode--activated .event-header{
    color:white;
}

.darkmode--activated .darkmode-label{
    color:#fff;
}

.darkmode--activated .tab-content{
    box-shadow: 0 2px 5px 0 rgba(255, 255, 255, 0.2), 0 3px 10px 0 rgba(255, 255, 255, 0.2);
    padding: 15px;
    background-color: #1c1c1c;
}
.darkmode--activated span{
    color: #fff;
}
.darkmode--activated small{
    color: #fff;
}

.darkmode--activated b{
    color: rgb(170,28,32);
}
.darkmode--activated p,.darkmode--activated span, .darkmode--activated li, .darkmode--activated td{
    color: #fff;
}
.darkmode--activated a b, .darkmode--activated h2>b, .darkmode--activated h4>b{
    color: rgb(255, 255, 255);
}
.darkmode--activated a b, .darkmode--activated h2, .darkmode--activated h4{
    color: rgb(255, 255, 255);
}
.darkmode--activated nav{
background-color: #000000;
}
.darkmode--activated #sidebar{
background-color: #333333;
}
.darkmode--activated .item-hoverable>a>img {
    filter: brightness(0) invert(1);
}
.darkmode--activated .item-hoverable:hover>a>img{
    filter: none;
}
.darkmode--activated #sidebarCollapse{
    color: white;
}
.darkmode--activated #sidebar.active{
box-shadow: -3px 3px 3px rgba(73, 73, 73, 0.3);
}
.darkmode--activated .navbar{
    background-color: #000000;
    box-shadow: 3px 3px 3px rgba(73, 73, 73, 0.3);
}
.darkmode--activated .overlay.active{
    opacity: 0.5;
}

.darkmode--activated .nav-link, .darkmode--activated .nav-tabs{
    border:none;
}
.darkmode--activated .carousel-indicators .active{
    background-color:rgb(170,28,32);
}

.darkmode--activated h4,.darkmode--activated h5,.darkmode--activated h6{
    color:white;
}

.darkmode--activated .btn-primary{
    background-color:rgb(170,28,32) ;
    border:none;
}


.darkmode--activated .btn-primary:hover{
    background-color:rgb(170, 20, 25) ;
}