/* Application window dates */
.date-text {
    background-color: white; /*lightblue;*/
    border-radius: 10px; /*8%;*/
    margin-left: 10px;
    margin-right: 10px;
    /* margin-top: -1px; -5 */
    padding: 5px 10px 5px 10px;
}

/* text next to date-text */
.date-text-near {
    padding: 5px 0 0 0;
}

/* application button */
.apply-button {
    /* margin: 0;
    position: relative;
    left: 50%; */
    padding: 5px 15px 4px 15px;
    background-color: #006633; /*#006633; /*lightgreen;*/
    border-radius: 10px;
    font-size: x-large;
    margin-top: 30px;
    margin-bottom: 30px;
    color: white;
}

/* details-summary (FAQs) */
.details-text {
    text-align: start; /*center;*/
    border-color: white;
    margin: auto;
    width: 80%;
    padding-left: 18%;
    margin-bottom: 10px;
    /* border: solid 1px; */
}

.faq-white .details-text {
    color: white;
}

summary {
    font-weight: bold;
}

.details-text > p {
    border: solid 1px white;
    border-radius: 5px;
    /* padding-left: 5px; */
    padding: 5px 5px 5px 5px;
}

.login-item {
    margin-top: 5px;
}

.btn-login {
    border-radius: 20px;
    margin-top: 20px;
    padding: 5px 20px 5px 20px;
}

.otp {
    display: none;
}

/* Tab View */
/* Style the tab */
.my-tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}
  
  /* Style the buttons that are used to open the tab content */
.my-tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    /*  */
    border-right: solid 1px #ddd;
    /* border-left: solid 1px #ddd; */
}
  
  /* Change background color of buttons on hover */
.my-tab button:hover {
    background-color: #ddd;
}

    /* Handle case where section complete */
.my-tab button.complete {
    background-color: #0c8e44;
    color: white;
}
  
  /* Create an active/current tablink class */
.my-tab button.active {
    background-color: #ccc;
    color: inherit;
}
  
  /* Style the tab content */
.my-tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

/* end tab view */

.my-check-label {
    margin-left: 5px;
}


/*------ Question tabs view */
/* Style the tab */
.q-tab {
    overflow: hidden;
    /* border: 1px solid #ccc; */
    /* background-color: #f1f1f1; */
}
  
  /* Style the buttons that are used to open the tab content */
.q-tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}
  
  /* Change background color of buttons on hover */
.q-tab button:hover {
    background-color: #ddd;
}
  
  /* Create an active/current tablink class */
.q-tab button.active {
    background-color: #ccc;
}
  
  /* Style the tab content */
.q-tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    /* border-top: none; */
}
/*----- end question tab view */

/* word count */
.word-count {
    text-align: center;
    margin-left: -100px;
}

/* --- navigation header --- */
.my-navbar {
    overflow: hidden;
    background-color: gainsboro;
    /* color: aquamarine; */
    /* background-color: aquamarine;*/
    width: 100%;
    height: 35px; /*fit-content;*/
    padding-top: 5px;
}

.my-subnav {
    position: absolute;
    right: 75px; /*20px;*/
    left: auto;
}

.my-subnav .subnavbtn {
    font-size: 16px;
    border: none;
    outline: none;
    /* color: white; */
    /* padding: 14px 16px; */
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.subnav-content {
    display: none;
    position: absolute;
    left: 0;
    background-color: gainsboro;
    width: 100%;
    z-index: 1;
}

.my-navbar a:hover, .my-subnav:hover .subnavbtn {
    background-color: aliceblue;
}

/* Style the subnav links */
.subnav-content a {
    float: right;
    color: red;
    text-decoration: none;
    margin-right: 10px;
    margin-top: 5px;
    padding: 0 5px 0 5px;
}

.subnav-content a:hover {
    background-color: aliceblue; /*#eee;*/
    /* color: black; */
}

/* Open container on subnav hover */
.my-subnav:hover .subnav-content {
    display: block;
}

/* --- end navigation header */


/* /applied page */
.applied-text {
    margin-left:auto;
    margin-right: 0;
    margin-bottom: 5px;
    padding: 5px 10px 0 10px;
}

.applied-bubble {
    background-color: #006633; /* lfg green */
    color: white;
    margin-bottom: 5px;
    border-radius: 10px;
    padding: 5px 10px 0 10px;
    font-weight: bold;
}

/* applied button for ccalendar */
.applied-cal-btn {
    margin: 0 auto;
    display: block;
    margin-bottom: 10px;
    background-color: hsl(50.588, 100%, 50%);
    border-radius: 10px;
    padding: 5px 10px 5px 10px;
}


/* Responsive layout, phone screens */
@media screen and (max-width: 768px) {
    .details-text {
        padding-left: 0;
    }
}
/* (max-width: 768px) */

