@import url("../fonts/stylesheet.css");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

    font-family: "DB Adman X";
    /*font-family: 'poppins', sans-serif;*/
}

header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;

    display: flex;
    width: 100%;
    padding: 8px 25px;

    background: #67bf8f;

    align-items: center;
    justify-content: space-between;
}

header .logo {
    position: relative;

    font-size: 1.5em;
    font-size: 20px;
    font-weight: 600;

    text-transform: none;

    color: #fff;
}

header .notification {
    position: absolute;
    top: 15%;
    right: 280px;

    display: flex;

    flex-wrap: wrap;
    justify-content: center;
}

header .notification li {
    margin: -3px -10px;

    list-style: none;
}

header .notification li a img {
    padding: 4px 0;
}

/*header .notification li a{
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        letter-spacing: 1px;
        font-size: 38px;
    }*/
header .search {
    position: relative;

    width: 220px;
    height: 30px;
}

header .search input {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
    padding: 0 10px 0 10px;

    font-size: 22px;

    border: 1px solid #fff;
    border-radius: 10px;
    outline: none;
    /*color: #fff;*/
    background: #fff;
}

header .search input::placeholder {
    /*color: #fff*/
}

header .search i {
    position: absolute;
    top: 50%;
    left: 90%;
    /*color: #fff;*/
    /*border-right: 1px solid #fff;*/

    padding-right: 10px;

    cursor: pointer;
    transform: translateY(-50%);
}

.fa-search:before {
    content: "\f002";

    color: #000;
}

.notification .badge {
    position: absolute;
    top: 17px;
    right: -14px;

    padding: 1px 7px;

    color: white;
    border-radius: 50%;
    background-color: #335d46;
}


/*table_box*/

.main_block {
    max-width: 860px;
    margin: auto;
    margin-top: 180px;
}

.main_block h4 {
    font-family: "DB Adman X";
    font-size: 40px;
    font-weight: normal;

    color: #67bf8f;
}

.table_box {
    margin-top: 30px;
}

#customers {
    width: 100%;

    font-family: "DB Adman X";
    border-collapse: collapse;
}

#customers td {
    font-size: 26px;
    font-weight: normal;
}

.padd {
    padding: 5px 25px 0 0;
}

#customers td img {
    margin-right: 10px;
    /*width: 25px;*/
}

/*switch */
.switch {
    position: relative;

    display: inline-block;
    width: 40px;
    height: 25px;
}

.switch input {
    width: 0;
    height: 0;

    opacity: 0;
}

.slider {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    cursor: pointer;
    -webkit-transition: .4s;
            transition: .4s;

    background-color: #ccc;
}

.slider:before {
    position: absolute;
    bottom: 1px;
    left: 1px;

    width: 23px;
    height: 23px;

    content: "";
    -webkit-transition: .4s;
            transition: .4s;

    background-color: white;
}

input:checked + .slider {
    background-color: #67bf8f;
}

input:checked + .slider:before {
    -webkit-transform: translateX(15px);
        -ms-transform: translateX(15px);
            transform: translateX(15px);
}

#customers td .switch {
    margin-right: 10px;
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
    background: #929292;
}

.slider.round:before {
    border-radius: 50%;
}

@media (min-width:768px) and (max-width: 991px) {
    header {
        padding: 10px 20px;
        flex-direction: column;
    }

    .main_block {
        margin: 12% 2% 0 2%;
    }

    header .logo {
        position: absolute;
        top: 18px;
        left: 75px;
    }
}

@media screen and (max-width: 600px) {
    table {
        border: 0;
    }

    table caption {
        font-size: 1.3em;
    }

    table thead {
        position: absolute;

        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0 0 0 0);

        border: none;
    }

    table tr {
        /*        display: block; */
        padding: 6px;
        margin: 14px 0;

        text-align: center;

        border: 1px solid #cac6c6;
    }

    table#customers tr {
        display: block;
    }

    table td {
        /*         display: inline-block; */
        font-size: .8em;
    }

    table#customers td {
        display: inline-block;
    }

    table#customers td.mSep {
        display: block;
    }

    .sm_width {
        min-width: 100px;
        padding: 9px;
    }

    #customers td {
        /*border: 1px solid #ddd;*/
        font-size: 18px;
        font-weight: normal;
    }

    .padd {
        padding: 0 10px 0 0;
    }

    #customers td img {
        width: 43px;
        margin-right: 10px;
    }

    table td::before {
        float: left;

        font-weight: bold;
        /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */

        content: attr(data-label);
        text-transform: uppercase;
    }

    table td:last-child {
        border-bottom: 0;
    }
}

@media (min-width:320px) and (max-width: 450px) {
    header .logo {
        position: absolute;
        top: 18px;
        left: 10px;
    }

    header .search {
        position: relative;
        top: 0;
        left: 25px;

        width: 190px;
        height: 30px;
    }

    header .notification {
        position: absolute;
        top: 5px;
        left: 90%;
        /* right: 30px; */
    }
    .rightMenu {
        right: 78px;
    }

    .main_block {
        margin: 25% 2% 0 2%;
    }

    .table_box {
        margin: 2% 10px;
        overflow-x: auto;
    }

    .main_block h4 {
        font-size: 25px;

        text-align: center;
    }
}


/* page3 css */
.main_block3 {
    max-width: 1250px;
    margin: auto;
    margin-top: 180px;
}

.main_block3 h3 {
    font-size: 35px;
    font-weight: normal;

    color: #3e3e3e;
}
.main_block3 h3 a {
    font-size: 35px;
    font-weight: normal;

    text-align: left;

    color: #3e3e3e;
}

.wrapper {
    display: grid;
    padding-top: 10px;

    color: #444;
    background-color: #fff;

    grid-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
}

.box {
    position: relative;
    top: 0;
    left: 0;

    min-height: 150px;
    padding: 20px 0 0 20px;

    font-size: 150%;

    color: #3e3e3e;
    border: 2px solid #a6a6a6;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.padd-left {
    padding-left: 10px;
}

.box p {
    font-size: 24px;
}

.cross span {
    position: absolute;
    top: 16%;
    left: 88%;
}

.cross img {
    width: 24px;

    cursor: pointer;
}

.bottom-block {
    display: flex;

    justify-content: space-between;
}

.inner-box-left span {
    font-size: 20px;

    color: #494949;
}

.inner-box-left {
    padding: 10px 0;
}

.bottom-block-left {
    display: flex;

    grid-gap: 10px;
    grid-template-columns: 1fr 1fr;
}

.bottom-block-right {
    display: flex;
    padding-right: 10px;
}

.inner-box-right {
    display: flex;
    padding: 8px;

    align-items: center;
    justify-content: center;
}

.inner-box-right.tooltip {
    display: flex;
}

.inner-box-right img {
    width: 30px;
}

.button {
    display: inline-block;
    padding: 10px 25px;
    margin: 15px 2px;

    font-size: 28px;

    cursor: pointer;
    text-align: center;
    text-decoration: none;

    color: white;
    border: none;
    border-radius: 50px;
    background-color: #67bf8f;
    /* Green */
}

.box-color {
    background: #d3fbe0;
}

.innerblock-right.tooltip .tooltiptext {
    z-index: 11;
}

@media (max-width: 1024px) {
    .main_block3 {
        margin: 12% 2% 0 2%;
    }

    .cross span {
        position: absolute;
        top: 20%;
        left: 85%;
    }

    .box {
        padding: 20px 0 0 8px;
    }
}

@media (max-width: 500px) {
    .wrapper {
        display: grid;

        color: #444;
        background-color: #fff;

        grid-gap: 10px;
        grid-template-columns: 1fr;
    }

    .main_block3 {
        margin: 20% 2% 0 2%;
    }
}

/* page3 css */


/* page 8 css */
.main_block8 {
    max-width: 1280px;
    margin: auto;
    margin-top: 80px;
}

.main_block8 h4 {
    font-size: 40px;
    font-weight: normal;

    color: #4a4a4a;
}

.Profile h3 {
    margin: 0 0 5px 40px;

    font-size: 34px;
    font-weight: normal;

    color: #797979;
}

.Profile {
    width: 100%;
    height: 100vh;
    padding-top: 20px;

    color: #000;
}

.parents_div {
    display: flex;
    width: 100%;
    height: auto;
    padding: 0 40px;
    margin: auto;

    flex-wrap: wrap;
    justify-content: space-around;
}

.child_div {
    height: auto;
    margin-right: 20px;
    margin-bottom: 20px;

    text-align: center;

    flex: 1 1 480px;
}


.profile-form {
    border-radius: 5px;
}

.profile-form input[type=text],
.placeholder,
select {
    width: 100%;
    padding: 10px 20px;
    margin-bottom: 10px;

    font-size: 26px;

    resize: vertical;

    color: #000;
    border: 1px solid #000;
    border-radius: 10px;
    outline: none;
    background: none;
}

select {
    text-indent: 1px;
    text-overflow: "";

    background-image: url(../images/arrow.png);
    background-repeat: no-repeat;
    background-position: center right 20px;

    -webkit-appearance: none;
       -moz-appearance: none;
}

select::-ms-expand {
    display: none;
}

.fright {
    float: right;
    margin-top: 2px;
}

::placeholder {
    opacity: 1;
    color: #c0c0c0;
    /* Firefox */
}

.profile-form .col-15 {
    float: left;
    width: 15%;
    margin-top: 6px;
}

.profile-form .col-75 {
    float: left;
    width: 85%;
    margin-top: 6px;
}

.profile-form .col-85 {
    float: left;
    width: 95%;
    margin-top: 6px;
}

/* Clear floats after the columns */
.profile-form .row:after {
    display: table;
    clear: both;

    content: "";
}


.Neon-input-dragDrop {
    display: block;
    width: 100%;
    max-width: 300px;
    padding: 10px;

    -webkit-transition: box-shadow .3s, border-color .3s;
       -moz-transition: box-shadow .3s, border-color .3s;
            transition: box-shadow .3s, border-color .3s;
    text-align: center;

    color: #97a1a8;
    background: #f9fdff;
    box-shadow: 0 0 1px #939393;
}

.Neon-input-inner {
    min-height: 280px;
    padding: 0;

    border: 2px dashed #c8cbce;
    border-radius: 5px;
    background: #fff;
}

.Neon-input-inner img {
    width: 100%;
    height: auto;
}

.Neon-input-text h3 {
    margin: 0;

    font-size: 18px;
    font-weight: 600;

    color: #5c615d;
}

.Neon-input-text span {
    display: inline-block;
    margin: 5px 0;

    font-size: 20px;
}

.Neon-input-choose-btn.blue {
    font-size: 16px;
    font-weight: normal;

    color: #fff;
    border: 1px solid #6484f3;
    background: #6484f3;
}

.Neon-input-choose-btn {
    display: inline-block;
    padding: 8px 14px;

    font-size: 12px;
    font-weight: bold;

    cursor: pointer;
    -webkit-transition: all .2s;
       -moz-transition: all .2s;
            transition: all .2s;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    text-decoration: none;

    color: #8d9496;
    border: 1px solid #c6c6c6;
    border-radius: 3px;
    outline: none;
    background-color: #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .05);
}

.Neon-input-icon {
    padding: 20px 0;
}

.main_block8 table {
    width: 100%;
    margin: 15px 0;

    border-collapse: collapse;
}

.main_block8 td,
th {
    padding: 3.5px 18px;

    font-size: 24px;

    text-align: center;

    border: 1px solid #ddd;
}

.main_block8 th {
    font-weight: normal;

    background-color: #f4f4f4;
}

.main_block8 caption {
    padding: 10px;
    margin: 0;

    font-size: 1.3em;
    font-weight: bold;

    border: 1px solid #ddd;
    border-radius: 0;
    background: #f7f7f7;
}

.topline {
    display: grid;
    width: 100%;
    max-width: 926px;
    margin: 15px 0;

    grid-gap: 10px;
    grid-template-columns: 1fr 1fr;
}

.td-width {
    width: 100%;

    text-align: left !important;
}

table.emp-sales {
    width: 70%;
    margin: 0 30px;
}

table.emp-sales tr:nth-child(even) {
    background-color: #f2f2f2;
}

.search-container {
    float: right;
}

.search-container input[type=text] {
    width: 100%;
    max-width: 250px;
    padding: 5px 10px;
    margin-top: 0;
    margin-right: 15px;

    font-size: 20px;

    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}

.btn-right {
    text-align: right;
}

.btn-right .button {
    display: inline-block;
    padding: 5px 10px;
    margin: 4px 2px;

    font-size: 20px;

    cursor: pointer;
    text-align: center;
    text-decoration: none;

    color: white;
    /* Green */
    border: none;
    border-radius: 5px;
    outline: none;
    background-color: #4caf50;
}

/*model-poppup*/
.overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;

    visibility: hidden;

    opacity: 0;
    background: rgba(0, 0, 0, .7);
}

.overlay:target {
    visibility: visible;

    opacity: 1;
}

.popup {
    position: relative;
    top: 50%;

    width: 100%;
    max-width: 800px;
    padding: 20px 50px;
    margin: auto;

    transform: translate(0, -50%);

    border-radius: 10px;
    background: #fff;
}

.popup h2 {
    margin-top: 0;

    font-family: Tahoma, Arial, sans-serif;

    color: #333;
}

.popup .close {
    position: absolute;
    top: 5px;
    right: 16px;

    font-size: 25px;
    font-weight: normal;

    transition: all 200ms;
    text-decoration: none;

    color: #9f9f9f;
}

.popup .close:hover {
    color: #67bf8f;
}

.popup .content {
    max-height: 30%;
    overflow: auto;
}

/*model-popup1-css*/
.form-style-3 {
    max-width: 660px;

    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

.form-style-3 label {
    display: block;
    margin-bottom: 10px;
}

.form-style-3 label > span {
    float: left;
    width: 100%;
    max-width: 250px;

    font-size: 28px;
    font-weight: normal;

    color: #505050;
    text-shadow: 1px 1px 1px #fff;
}

.form-style-3 label .saved {
    text-align: right;
}

.form-style-3 label .saved span {
    padding: 7px 14px;
    margin-right: -35px;

    text-align: center;

    border: 1px solid #dc3545;
    border-radius: 5px;
}

.form-style-3 fieldset {
    padding: 20px 0;
    margin: 0 0 0 0;

    border: none;
    background: #fff;
}

textarea.textarea-field.fully-width {
    width: 100%;
    height: 80px;
}

.form-style-3 textarea {
    width: 250px;
    height: 100px;
}

.form-style-3 input[type=text],
.form-style-3 input[type=date],
.form-style-3 input[type=datetime],
.form-style-3 input[type=number],
.form-style-3 input[type=search],
.form-style-3 input[type=time],
.form-style-3 input[type=url],
.form-style-3 input[type=email],
.form-style-3 select,
.form-style-3 textarea {
    width: 35%;
    padding: 2px 10px;

    font-size: 24px;

    color: #505050;
    border: 1px solid #c1c1c1;
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    outline: none;
    background: #fff;
}




.form-style-3 input[type=submit],
.form-style-3 input[type=button] {
    padding: 5px 10px;
    margin-right: 25px;

    font-size: 20px;
    font-weight: normal;

    cursor: pointer;

    color: #fff;
    border: 1px solid #007bff;
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    outline: none;
    background: #007bff;
}

.required {
    font-weight: normal;

    color: red;
}

select.select-field {
    margin-bottom: 0;

    background-image: url(../images/arrow.png);
    background-repeat: no-repeat;
    background-position: center right 10px;
    background-size: 10px;
}

.margin-bottom {
    margin-bottom: 0 !important;
}

/* The checkbox-css */
.checkbox-div {
    display: flex;

    flex-wrap: wrap;
}

.checkbox-div label {
    position: relative;

    display: block;
    padding-right: 75px;
    margin-right: 20px;
    margin-bottom: 12px;

    font-size: 20px;

    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    color: #505050;
}

/* Hide the browser's default checkbox */
.checkbox-div label input {
    position: absolute;

    width: 0;
    height: 0;

    cursor: pointer;

    opacity: 0;
}

/* Create a custom checkbox */
.checkbox-div label .checkmark {
    position: absolute;
    top: 2px;
    left: 80px;

    width: 16px;
    height: 16px;

    border-radius: 3px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-div label input:checked ~ .checkmark {
    background-color: #5294e2;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-div label .checkmark:after {
    position: absolute;

    display: none;

    content: "";
}

/* Show the checkmark when checked */
.checkbox-div label input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-div label .checkmark:after {
    top: 2px;
    left: 5px;

    width: 3px;
    height: 7px;

    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);

    border: solid white;
    border-width: 0 3px 3px 0;
}

.margin-bottom img {
    width: 20px;
    margin-left: 10px;
    /* margin-top: 6px; */
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .profile-form .col-15,
    .profile-form .col-85,
    .col-75 .profile-form input[type=submit] {
        width: 100%;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .parents_div {
        padding: 0;
    }
}

@media screen and (max-width: 700px) {
    .popup {
        width: 90%;
        padding: 20px 30px;
    }

    .form-style-3 label .saved span {
        margin-right: 0;
    }
}

/*@media screen and (min-width: 768px){
  .parents_div{
  flex-wrap: inherit;
  }
}*/
@media screen and (max-width: 600px) {
    .main_block8 {
        margin: 20% 8% 0 8%;
    }

    .child_div {
        width: 480px;
        height: auto;
        margin-bottom: 20px;

        text-align: center;
    }

    table.emp-sales {
        width: 100%;
        margin: 0 0;
    }

    table.emp-sales td {
        /*    width: 100%; */
        text-align: left;
    }
}

/* page 8 css */



/* page 1 css */
.main_block1 {
    max-width: 1090px;
    margin: auto;
    margin-top: 90px;
}



.title {
    font-size: 18px;

    color: grey;
}

.fullyblock {
    display: inline-block;
    margin: 0 0;
}

.fullyblock p {
    margin-bottom: 10px;

    font-size: 24px;
}

.first-block {
    display: block;

    text-align: left;
}

.item-block {
    display: grid;

    grid-gap: 10px;
    grid-template-columns: 1fr 1fr;
}

.innerblock {
    padding: 5px 0 0 0;
}

.innerblock h3 {
    font-size: 35px;
    font-weight: normal;
}

.bottom-block-right {
    display: grid;

    grid-gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
}

.padd-img {
    padding-top: 12px !important;
}

.innerblock-right {
    padding: 5px 4px;
}

/* .innerblock-right img {
    width: 25px;
}
 */

.profile-img img {
    width: 160px;
}

.addBtn {
    margin: 10px;
}

select.select {
    float: right;
    max-width: 230px;
    padding: 5px 20px;

    color: #fff;
    border: 0;
    border-radius: 25px;
    background-color: #80da9e;
    background-image: url(../images/warrow.png);
    background-size: 15px;
}

.lifeJourney {
    float: right;
    width: 100%;
    max-width: 80%;
    margin-top: -70px;
}

.journeyGraph {
    position: relative;

    float: left;
    width: 100%;
    padding: 20px 0;
    margin-top: 60px;
    clear: both;
}

.journeyGraph ul {
    position: relative;

    display: flex;
    padding: 0;
    padding-top: 30px;
    margin: 0;

    line-height: 2;
    list-style: none;

    text-align: center;

    justify-content: space-between;
}

.journeyGraph ul b {
    display: block;

    font-weight: normal;
}

.journeyGraph ul:before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    width: 98%;
    height: 5px;
    margin: auto;

    content: "";

    background-color: #335d46;
}

.dotValue {
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 1;

    display: inline-block;

    text-align: center;
}

.dotValue b {
    display: block;

    font-weight: 100;
}

.dots {
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 1;

    display: inline-block;
    width: 22px;
    height: 22px;

    border: 4px solid #67be8f;
    border-radius: 50%;
    background-color: #fff;
}

.dots b {
    position: absolute;
    top: -40px;
    left: -6px;

    display: block;
    width: 30px;
    height: 30px;

    content: "";
    cursor: pointer;

    background-image: url(../images/1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* page 1 css */


/* login CSs */

.login-container {
    display: table;
    width: 100%;
    max-width: 360px;
    padding: 10px;
    margin: 0 auto;

    text-align: center;

    box-shadow: 1px 1px 5px 2px #ccc;

    align-items: center;
}



.avatar {
    width: 60px;
    height: 60px;
    padding: 10px;
}

form h2 {
    margin: 15px 0;

    font-size: 30px;

    text-transform: uppercase;

    color: #333;
}

.input-div {
    display: grid;
    padding: 5px 0;
    margin: 10px 10px;

    border-bottom: 2px solid #d9d9d9;

    grid-template-columns: 7% 93%;
}

/**/
.input-div .one {
    margin-top: 0;
}

.input-div .two {
    margin-bottom: 4px;
}

.i {
    display: flex;

    align-content: center;
    align-items: center;
}

.i i {
    color: #67bf8f;
}

.input-div > div {
    position: relative;

    height: 45px;
}

.input-div > div h5 {
    position: absolute;
    top: 25px;
    left: 10px;

    font-size: 18px;

    transition: .3s;
    transform: translateY(-50%);

    color: #999;
}

.input {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
    padding: .5rem .7rem;

    font-size: 1.2rem;

    color: #555;
    border: none;
    outline: none;
    background: none;
}

a {
    display: block;

    font-size: 20px;

    transition: .3s;
    text-align: right;
    text-decoration: none;

    color: #999;
}

a:hover {
    color: #67bf8f;
}

.btn {
    display: block;
    width: 100%;
    height: 50px;
    margin: 1rem 0;

    font-size: 25px;
    /*background-image: linear-gradient(to right, #32be8f, #38d39f, #32be8f);*/

    cursor: pointer;
    transition: .5s;
    text-transform: uppercase;

    color: #fff;
    border: none;
    border-radius: 25px;
    outline: none;
    background-color: #67bf8f;
    background-size: 200%;
}

.btn:hover {
    background-position: right;
}

.colorset {
    display: inline-flex;

    font-size: 22px;

    color: #67bf8f;
}

span.bottom-line {
    font-size: 20px;

    color: #555;
}

/* login CSs */


/* registration Css */

.input-div .three {
    margin-top: 0;
}

.input-div .four {
    margin-top: 0;
}

.input-div .five {
    margin-bottom: 4px;
}


/* registration Css */


@media (max-width: 1024px) {
    .main_block1 {
        padding: 0 20px;
    }

    header .notification {
        right: 50px;
    }

    .lifeJourney {
        float: none;
        max-width: 100%;
        margin-top: 0;
        overflow: auto;
    }

    .journeyGraph {
        width: 180%;
    }

    .mWidth .journeyGraph {
        width: 206%;
    }

    .yearGraph {
        width: 180%;
    }
}

.journeyBlock:after {
    display: block;
    clear: both;

    content: "";
}

.journeyBlock .lifeJourney {
    max-width: 100%;
    margin-top: 30px;
}

.text-right {
    text-align: right;
}

.fieldBlock {
    display: inline-block;
    max-width: 260px;

    text-align: left;
}

.fieldBlock label {
    display: inline-block;

    font-size: 30px;
}

.fieldBlock select.select {
    float: none;
}

.yearGraph {
    position: relative;

    display: flex;
    padding: 40px 0;
    margin: 0;

    font-size: 20px;
    list-style: none;

    justify-content: space-between;
}


.yearGraph:before {
    position: absolute;
    top: 48px;
    right: 0;
    left: 0;
    z-index: 0;

    width: 98%;
    height: 2px;
    margin: auto;

    content: "";

    background-color: #335d46;
}

.yearGraph li {
    position: relative;

    padding: 0 2px;

    background-color: #fff;
}


.userInfo {
    margin-top: 20px;
    clear: both;

    font-size: 35px;
    line-height: 1;

    text-align: right;
}

.userInfo img {
    vertical-align: -9px;
}

.spaceLg {
    height: 150px;
}

.flexRow {
    display: flex;

    align-items: center;
    justify-content: space-between;
}

.smPopup {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 100;

    display: none;
    width: 300px;
    padding: 15px;

    font-size: 20px;

    transform: translate(-50%, -50%);

    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f6f6f6;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
}

.smPopup i {
    position: absolute;
    top: -10px;
    right: -10px;

    width: 20px;
    height: 20px;

    font-size: 16px;
    font-style: normal;
    line-height: 20px;

    cursor: pointer;
    text-align: center;

    color: #fff;
    border-radius: 50%;
    background-color: #80da9e;
}

.smPopup h5 {
    margin-bottom: 10px;

    font-size: 40px;
    font-weight: normal;
    line-height: 1;

    color: #80da9e;
}

.smPopup p {
    margin: 10px 0;

    font-size: 25px;
}

.smPopup p strong {
    display: inline-block;
    width: 50%;
}

body.popActive:before {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;

    width: 100%;
    height: 100%;

    content: "";

    background-color: rgb(0 0 0 / 50%);
}

.homeCenter {
    padding-top: 20vh;

    text-align: center;
}

.homeCenter h1 {
    font-size: 100px;

    letter-spacing: .05em;
    text-transform: uppercase;

    color: #67bf8f;
}

.alert ul {
    list-style: none;
}

.alert.alert-danger ul {
    padding: 6px;

    color: #f00;
    border: 1px solid;
    background-color: #ffe3e3;
}

.alert.alert-success ul {
    padding: 6px;

    color: #000;
    border: 1px solid;
    background-color: #67bf8f;
}

.mainMenu {
    position: absolute;
    right: 350px;

    display: flex;

    list-style: none;
}

.mainMenu li {
    padding: 0 5px;
}

.mainMenu li a {
    color: #fff;
}

.mainMenu li a:hover {
    text-decoration: underline;
}




.rightMenu {
    position: absolute;
    top: 8px;
    right: 272px;

    float: right;
    padding: 0;
    margin: 0;

    list-style: none;
}

.rightMenu li:hover ul {
    display: block;
}

.rightMenu ul {
    position: absolute;
    top: 36px;
    left: -76px;

    display: none;
    width: 200px;
    padding: 0;
    padding: 10px;
    margin: 0;

    list-style: none;

    background-color: #fff;
    box-shadow: 0 5px 5px #c3c3c3;
}



.rightMenu ul li a {
    padding: 8px 15px;
    margin: 5px 0;

    font-size: 22px;

    text-align: left;

    color: #fff;
    background-color: #67bf8f;
}

.rightMenu img {
    width: 32px;
    height: auto;
}

header .notification {
    top: 6px;
    right: 338px;
}

.viewDeails {
    float: right;
    width: 40px;
    height: auto;
    margin-right: 10px;
}

#table_id_wrapper {
    max-width: 886px;
    margin-left: 40px;
}

table.dataTable,
table.dataTable th,
table.dataTable td {
    text-align: left;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
    font-size: 24px;
}

.selectDrop {
    float: left;
    width: 100%;
    max-width: 230px;
}

.selectDrop .dropdown-toggle::after {
    display: inline-block;
    float: right;
    width: 0;
    height: 0;
    margin-top: 8px;
    margin-left: .255em;

    content: "";
    vertical-align: .255em;

    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.dropdown-toggle {
    height: auto;
    padding: 7px 12px;
    margin: 0;

    font-size: 20px;

    text-align: left;

    color: #000;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: transparent;
}

#example .d-none {
    display: none;
}

.dropdown.hierarchy-select {
    position: relative;
}

.dropdown.hierarchy-select .dropdown-menu {
    position: absolute;
    top: 40px;
    z-index: 10;

    display: none;
    width: 100%;

    transform: translate3d(0px, 40px, 0px) !important;

    background-color: #fff;
    box-shadow: 0 10px 10px rgb(0 0 0 / 40%);
}

.selectDrop .dropdown.hierarchy-select.show .dropdown-menu {
    display: block;
}

.dropdown-menu .hs-menu-inner {
    max-height: 200px !important;
}

.dropdown-menu .hs-menu-inner a {
    padding: 6px 20px;

    text-align: left;
}

.hs-searchbox .form-control {
    width: 100% !important;
}

.dropdown-menu .hs-menu-inner a:hover {
    color: #fff;
    background: #67bf8f;
}

.clear {
    display: block;
    clear: both;
}

#customers td a {
    font-size: 26px;
    font-weight: normal;

    text-align: left;

    color: #000;
}

#customers td a:hover {
    text-decoration: underline;
}

/*modal css*/
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.fade.show {
    opacity: 1;
}

.modal {
    z-index: 1072;
}
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;

    display: none;
    overflow: hidden;

    outline: 0;
}
.fade {
    transition: opacity .15s linear;

    opacity: 0;
}

.modal-open {
    overflow: hidden;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;

    background-color: #000;
}
.modal-backdrop.fade {
    opacity: 0;
}
.modal-backdrop.show {
    opacity: .5;
}


.modal-backdrop {
    z-index: 1071;
}
.modal-dialog {
    position: relative;

    width: auto;
    margin: .5rem;

    pointer-events: none;
}
.modal-dialog {
    max-width: 800px;
    margin: 1.75rem auto;
}

.modal.fade .modal-dialog {
    transition: -webkit-transform .3s ease-out;
    transition:         transform .3s ease-out;
    transition:         transform .3s ease-out,-webkit-transform .3s ease-out;
    -webkit-transform: translate(0,-25%);
            transform: translate(0,-25%);
}

.modal.show .modal-dialog {
    -webkit-transform: translate(0,0);
            transform: translate(0,0);
}

.modal-content {
    position: relative;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
        flex-direction: column;

    pointer-events: auto;

    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    outline: 0;
    background-color: #fff;
    background-clip: padding-box;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
}

.modal {
    z-index: 1072;
}

.modal-content .close {
    position: absolute;
    top: 10px;
    right: 15px;

    width: 30px;
    height: 30px;

    font-size: 40px;
    line-height: 0;

    cursor: pointer;
    text-align: center;

    border: 0;
    background-color: transparent;
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    padding: 0 30px;
}
.modal-footer .btn {
    float: right;
    width: auto;
    height: auto;
    padding: 10px 30px;

    font-size: 20px;
}
.topline .btn-right .btn {
    float: right;
    width: auto;
    height: auto;
    padding: 10px 25px;

    text-transform: initial;
}

table.dataTable tbody tr.greenRow {
    color: #fff;
    background-color: rgb(103 191 143 / 60%);
}
/*modal css end*/


.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 25px;

    text-align: left;
}
.select2-container .select2-selection--single {
    height: 50px !important;
    padding: 10px;

    border-color: #000 !important;
    border-radius: 10px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    top: 20px !important;
    left: -15px !important;

    border-width: 15px 10px 0 10px !important;
    border-color: #000 transparent transparent transparent !important;
}
.select2-container {
    margin-bottom: 10px;
}

.ourLay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;

    display: none;
    width: 100%;
    height: 100%;

    opacity: .5;
    background-color: #000;
}
body.popActive:before {
    display: none;
}

@media (max-width: 480px) {
    .main_block8 h4 {
        padding: 0;
    }

    .Profile h3 {
        margin: 0;
    }

    .child_div {
        width: 100%;
        margin: 0;
    }

    .text-right {
        text-align: left;
    }

    .fieldBlock {
        display: block;
        float: left;
        max-width: 50%;

        text-align: left;
    }

    .text-right:after {
        display: block;
        clear: both;

        content: "";
    }

    .yearGraph {
        width: 180%;
    }

    .mSep {
        display: block;
    }

    select.select {
        float: left;
    }

    .userInfo {
        text-align: left;
    }

    .mWidth .journeyGraph {
        width: 205%;
    }
    .rightMenu {
        right: 78px;
    }
}


.lifeJourney .userInfo img {
    height: auto;
    max-width: 30px;
}
