@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

:root {
    --toolbar-height: 70px;
    --font-native: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

h1,h2,h3,h4,h5,h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.profile_menu {
    background-color: #fff;
    border-radius: 10px;
    width: 300px;
    height: 500px;
    position: fixed;
    top: calc(var(--toolbar-height) + 10px);
    left: calc(100% - 310px);
    box-shadow: 0px 0px 17px 5px rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 1;
}

.profile_menu-active {
    display: block;
}

* {
    outline: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    transition: background-color .5s;
}

.page_header {
    font-size: 40px;
    font-family: Montserrat;
    color: #000;
    margin-bottom: 30px;
    margin-top: 40px;
}

.section_header {
    font-size: 30px;
    font-family: Montserrat;
    color: #000;
}

.branch_header {
    margin-top: 25px;
    margin-bottom: 30px;
}

.paragraph {
    font-family: Montserrat;
}

.line-active {
    border-bottom-color: #ffc04c;
}

.line-bottom {
    border-bottom: 5px;
    padding-bottom: 10px;
}

.text-center {
    text-align: center;
}

/* Chat Styles */

div.chat-box {
    min-width: 250px;
    max-width: 50%;
    border-radius: 15px;
    background: #00817b;
    color: #fff;
    padding: 20px;
    font-family: "Roboto";
    position: relative;
}


/* speech bubble 13 */

div.chat-bubble-right:before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 15px solid #00817b;
    border-right: 15px solid transparent;
    border-top: 15px solid #00817b;
    border-bottom: 15px solid transparent;
    right: -16px;
    top: 0px;
}


div.chat-bubble-left:before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 15px solid transparent;
    border-right: 15px solid #00817b;
    border-top: 15px solid #00817b;
    border-bottom: 15px solid transparent;
    left: -16px;
    top: 0px;
}

div.chat-container {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
}

div.chat-container.right {
    width: 100%;
}

div.chat-bubble-right {
    margin-right: 16px;
}

div.chat-bubble-left {
    margin-left: 16px;
}


/* Chat Styles End */

@media only screen and (max-width: 604px) {

    .options {
        display: none;
    }

    #menu_icon {
        display: block;
    }
}

@media only screen and (max-width: 773px) {
    .main-content {
        width: 100%;
    }

    .branch {
        width: 100%;
    }
}

@media only screen and (min-width: 605px) {

    .options {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    #menu_icon {
        display: none;
    }
}

@media only screen and (min-width: 774px) {
    .main-content {
        width: 60%;
    }

    .branch {
        width: 38%;
        float: right;
        margin-top: 30px;
        position: -webkit-sticky;
        position: sticky;
        top: 60px;
    }

    .nosticky {
        position: relative;
    }

    .branch-content {
        overflow-y: auto;
        min-height: calc(100vh - 200px);
    }
}

.button_post {
    border-radius: 50px;
    border: none;
    padding: 10px 100px;
    color: #fff;
    background-color: #4398c3;
    margin: 10px auto;
    display: block;
    transition: 500ms;
    font-family: Montserrat;

}

.button_post:hover {
    border-radius: 50px;
    border: 0;
    padding: 10px 100px;
    color: #fff;
    background-color: #6200ee;
    margin: 10px auto;
    display: block;
    cursor: pointer;
}

.button_toolbar {
    border-radius: 50px;
    border: none;
    padding: 10px 20px;
    color: #fff;
    background-color: #4398c3;
    display: block;
    margin-left: 20px;
    transition: 500ms;
    font-family: Montserrat;

}

.button_toolbar:hover {
    border-radius: 50px;
    border: 0;
    padding: 10px 20px;
    color: #fff;
    background-color: #ee2921;
    display: block;
    cursor: pointer;
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    max-width: 750px;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
    font-family: Montserrat;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    border: 1px solid #fff;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: expand 0.5s, collapse 0.5s 3.5s;
    animation: expand 0.5s, collapse 0.5s 3.5s;
}

@-webkit-keyframes expand {
    from {
        -webkit-transform: translateX(-50%) scale(0)
    }
    to {
        -webkit-transform: translateX(-50%) scale(1)
    }
}

@keyframes expand {
    from {
        transform: translateX(-50%) scale(0)
    }
    to {
        transform: translateX(-50%) scale(1)
    }
}

@-webkit-keyframes collapse {
    from {
        -webkit-transform: translateX(-50%) scale(1)
    }
    to {
        -webkit-transform: translateX(-50%) scale(0)
    }
}

@keyframes collapse {
    from {
        transform: translateX(-50%) scale(1)
    }
    to {
        transform: translateX(-50%) scale(0)
    }
}

.textbox {
    border-radius: 10px;
    border: 1px solid #000;
    font-family: "Roboto Medium";
    padding: 10px;
    width: 100%;
    margin-top: 10px;
}

.textarea {
    border-radius: 10px;
    border: 1px solid #000;
    font-family: "Roboto Medium";
    padding: 10px;
    width: 100%;
    min-height: 200px;
    margin-top: 10px;
    resize: vertical;
}

.textarea-dense {
    border-radius: 10px;
    border: 1px solid #000;
    font-family: "Roboto Medium";
    padding: 10px;
    width: 100%;
    min-height: 60px;
    margin-top: 10px;
    resize: none;
}

.card_google_signin {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    background-color: #370505;
    max-width: 300px;
    margin-left: auto;
    cursor: pointer;
    margin-right: auto;
}

.toolbar {
    padding: 10px;
    position: sticky;
    clear: both;
    position: -webkit-sticky;
    top: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    background-color: #6200ee;
    display: flex;
    align-items: center;
    z-index: 9999;
}

.btn-item-static {
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    transition: 0.3s;
    color: #fff;
    border-radius: 10px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.hover-paragraph {
    cursor: pointer;
    transition: 0.3s;
    color:#fff;
}

.hover-paragraph:hover {
    color: #b98585;
}

.btn-item-static:hover {
    background-color: rgba(255, 255, 255, 0.4);
    color: #000;
}

.all-content {
    margin: 10px;
}

.post_card {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    background-color: #370505;
    border-radius: 10px;
    margin-top: 10px;
    height: fit-content;
    transition: 0.5s;
}

.post_card div#postPadding {
    padding: 10px;
}

.post_card h2 {
    cursor: pointer
}

.celebration_card {
    background-color: #38725C;
    border-radius: 10px;
    margin-top: 10px;
    height: fit-content;
    transition: 0.5s;
}


.post_card:hover {
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.19), 0 12px 12px rgba(0, 0, 0, 0.23);
    border: 1px solid rgb(0, 0, 0);
}

.post_card:hover div#postPadding {
    padding: 9px;
}

.group_card {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    background-color: #202959;
    border-radius: 10px;
    margin: 10px;
    padding: 10px;
    cursor: pointer;
    transition: 0.5s;
}

.group_parent_card {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    background-color: #424242;
    border-radius: 10px;
    margin-bottom: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    height: fit-content;
    transition: 0.5s;
}

.comment_card {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    background-color: #498a74;
    border-radius: 10px;
    margin-top: 10px;
    height: fit-content;
    transition: 0.5s;
    border: 1px solid #498a74;
}

.hyperlink {
    color: rgb(36, 126, 228);
}

.comment_card:hover {
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.19), 0 12px 12px rgba(0, 0, 0, 0.23);
    border: 1px solid #000;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;
    background-color: #636f86;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    transition: 0.5s;

}

.toolbar .options a {
    text-decoration: none;
    font-family: 'Montserrat';
    margin-left: 20px;
    color: #fff;
    cursor: pointer;
}

.toolbar .options a:hover {
    margin-top: 6px;
    border-bottom: 3px solid #fff;
    padding-bottom: 3px;
}

.toolbar .options a.toolbar-selected {
    font-family: 'Montserrat';
    color: #ffc04c;
    cursor: pointer;
    border-bottom: 3px solid #ffc04c;
    margin-top: 6px;
    padding-bottom: 3px;
}

.toolbar .options a.toolbar-selected:hover {
    margin-top: 6px;
    padding-bottom: 3px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 17px;
    color: #f1f1f1;
    display: block;
    transition: 0.3s;
    font-family: "Roboto Medium";
}

.sidenav a:hover {
    color: #cf8e8e;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
}

.header {
    background-color: #6200ee;
    margin: 10px;
    outline: none;
    border-radius: 8px;
    padding: 10px;
}

#myHeaderTitle {
    font-size: medium;
    font-family: 'Montserrat';
    color: #fff;
    text-align: center;
}

.myHeaderTitleCondensed {
    font-size: 14px;
    font-family: 'Montserrat';
    color: #fff;
    margin-left: 15px;
    text-align: justify;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

.contextmenu {
    position: absolute;
    -webkit-box-shadow: 0px 0px 13px 4px rgba(50, 50, 50, 0.75);
-moz-box-shadow:    0px 0px 13px 4px rgba(50, 50, 50, 0.75);
box-shadow:         0px 0px 13px 4px rgba(50, 50, 50, 0.75);
background-color: #f1f1f1;
border-radius: 3px;
display: none;
}

.btn-item {
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    transition: 0.3s;
    border-radius: 10px;
    padding: 20px;
    padding-left: 10px;
}

.btn-item:hover {
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
}

.btn-item-context {
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    transition: 0.3s;
    border-radius: 3px;
    padding: 5px;
}

.btn-item-context:hover {
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 135px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.native-font {
    font-family: var(--font-native);
}

pre {
    background: #333;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}
  
code {
  font-family: monospace;
}

blockquote {
    border-left: 5px solid #2196F3;
    padding-left: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

p img {
    width: 100%;
    border-radius: 10px;
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    border-radius: 10px;
    width: 80%;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.19), 0 24px 24px rgba(0, 0, 0, 0.23);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    max-height: 80vh;
}

.modal-content h1 {
    font-family: Montserrat;
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal-content h2 {
    font-family: Montserrat;
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal-content h3 {
    font-family: Montserrat;
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal-content h4 {
    font-family: Montserrat;
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal-content h5 {
    font-family: Montserrat;
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal-content h6 {
    font-family: Montserrat;
    margin-top: 20px;
    margin-bottom: 10px;
}

.dropdown {
    position: relative;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    border: 1px solid #333;
    margin-top: 3px;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family: Montserrat;
  }
  
  .dropdown a:hover {background-color: #ddd;}

  .show {display: block;}
/* Add Animation */
@-webkit-keyframes animatetop {
    from {
        width: 0;
    }
    to {
        width: 80%;
    }
}

@keyframes animatetop {
    from {
        width: 0;
    }
    to {
        width: 80%;
    }
}

/* The Close Button */
.modal-close {
    color: black;
    float: right;
    margin-top: 10px;
    font-size: 28px;
    font-weight: bold;
    transition: 0.3s;
}

.modal-close:hover,
.modal-close:focus {
    color: #4392ff;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 2px 16px;
    color: black;
    font-family: Montserrat;
}

.modal-body {
    padding: 2px 16px;
    overflow-y: auto;
    max-height: 68%
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(143, 143, 143);
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

.switch input:checked + .slider {
    background-color: #2196F3;
}

.switch input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

.switch input:checked + .slider:before {
    /*-webkit-transform: translateX(26px);*/
    /*-ms-transform: translateX(26px);*/
    /*transform: translateX(26px);*/

    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

/* The container */
.container-radio {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: Montserrat;
}

/* Hide the browser's default radio button */
.container-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.check-radio {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
    transition: 0.5s;
}

/* On mouse-over, add a grey background color */
.container-radio:hover input ~ .check-radio {
    background-color: #ccc;
}

.notsticky {
    margin-top: 0;
}

/* When the radio button is checked, add a blue background */
.container-radio input:checked ~ .check-radio {
    background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.check-radio:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.container-radio input:checked ~ .check-radio:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container-radio .check-radio:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}


/* The container */
.container-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.container-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkbox {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 5px;
    transition: 0.5s;
}

/* On mouse-over, add a grey background color */
.container-checkbox:hover input ~ .checkbox {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container-checkbox input:checked ~ .checkbox {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container-checkbox input:checked ~ .checkbox:after {
    display: block;
}

/* Style the checkmark/indicator */
.container-checkbox .checkbox:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}