html {
  font-size: 14px;
  font-family: Roboto;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}


html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 4rem;
 }
.lg-hide {
    display: none;
}
.bg-main {
    background-image: url(../back2.jpg);
    background-repeat: no-repeat;
    background-position:left top;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 750px;
    min-width:100%;
   
}
.bg-primary {
    background-color: #3886ca !important;
}

.bg-success {
    background-color: #00a753 !important;
}

.btn-primary {


    color: #fff;
    background-color: #3886ca;
    border-color: #3886ca;
}
    .btn-primary.active {
        color: #fff;
        background-color: #0072c2;
        border-color: #0072c2;
    }
    .btn-primary:hover {
        color: #fff;
        background-color: #0072c2;
        border-color: #0072c2;
    }
.btn-success {
    color: #fff;
    background-color: #00a753;
    border-color: #00a753;
}

    .btn-success.active {
        color: #fff;
        background-color: #008f54;
        border-color: #008f54;
    }

    .btn-success:hover {
        color: #fff;
        background-color: #008f54;
        border-color: #008f54;
    }

.btn-danger {
    color: #fff;
    background-color: #d73443;
    border-color: #d73443;
}

    .btn-danger.active {
        color: #fff;
        background-color: #be2e3c;
        border-color: #be2e3c;
    }

    .btn-danger:hover {
        color: #fff;
        background-color: #be2e3c;
        border-color: #be2e3c;
    }


.btn-outline-primary {
    color: #1e6eb3;
    background-color: #fff;
    border-color: #1e6eb3;
}
.btn-outline-success {

    background-color: #fff;

}
.btn-outline-danger {

    background-color: #fff;
 
}

    .btn-outline-primary.active {
        color: #fff;
        background-color: #3886ca;
        border-color: #3886ca;
    }
    .btn-outline-primary:hover {
        color: #fff;
        background-color: #63a2d5;
        border-color: #63a2d5;
    }
.bg-secondary {
    background-color: #e7f1ff !important;
}
.bg-light {
    background-color: #F7F6FB !important;
}

.border-light {
    border-color: #eeeeee;
}

.text-primary {
    color: #003f86 !important;
}
.menu_text {
    font-size: 0;
}

.commenttext {
    border: 2px solid #eee;
    border-radius: 10px;
}
.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #3886ca;
    border-color: #3886ca;
}

.page-item:not(:first-child) .page-link {
    margin-left: -1px;
}
.green-card .card-icon {
    color: #008f54;
    background: #f6f6fe;
}
.blue-card .card-icon {
    color: #003f86;
    background: #e7f1ff;
}

.card-icon {
    font-size: 32px;
    line-height: 0;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    flex-grow: 0;
}

/* Lists */
ul,
ol,
dl {
    padding-left: 1rem;
    font-size: 0.875rem;
}

    ul li,
    ol li,
    dl li {
        line-height: 1.8;
    }

.list-ticked,
.list-arrow,
.list-star {
    list-style: none;
    padding: 0;
}

    .list-ticked li,
    .list-arrow li,
    .list-star li {
        padding-left: 1.5rem;
    }

        .list-ticked li:before,
        .list-arrow li:before,
        .list-star li:before {
            font-family: "Material Design Icons";
            margin-left: -1.5rem;
            width: 1.5rem;
            margin-right: .5rem;
        }

list-ticked li:before {
    content: '\F12D';
    color: #fe3f3e;
}

.list-arrow li:before {
    content: '\F142';
    color: #28a745;
}

.list-star li:before {
    content: '\F4CE';
    color: #f7b731;
}

.bullet-list {
    padding-left: 0;
}

.rtl .bullet-list {
    padding-right: 0;
}

.bullet-list li {
    position: relative;
    list-style-type: none;
    padding-left: 25px;
    line-height: 1;
    padding-bottom: 25px;
}

    .bullet-list li:before, .bullet-list li:after {
        content: "";
        position: absolute;
    }

    .bullet-list li:before {
        top: 0;
        left: 0;
        width: 15px;
        height: 15px;
        border-radius: 100%;
    }

    .bullet-list li:after {
        width: 11px;
        height: 11px;
        top: 2px;
        left: 2px;
        background: #fff;
        border-radius: 100%;
    }

    .bullet-list li:nth-child(1):before {
        background: #fe3f3e;
    }

    .bullet-list li:nth-child(2):before {
        background: #7978E9;
    }

    .bullet-list li:nth-child(3):before {
        background: #f7b731;
    }

    .bullet-list li:nth-child(4):before {
        background: #28a745;
    }

    .bullet-list li:nth-child(5):before {
        background: #3886ca;
    }

.bullet-line-list {
    padding-left: 30px;
    margin-bottom: 0;
    position: relative;
    list-style-type: none;
}

.rtl .bullet-line-list {
    padding-right: 0px;
}

.bullet-line-list li {
    position: relative;
    line-height: 1;
    padding-bottom: 10px;
}

    .bullet-line-list li:before {
        content: "";
        position: absolute;
        border-radius: 100%;
        width: 12px;
        height: 12px;
        left: -28px;
        top: 6px;
        border: 3px solid #3886ca;
        margin-right: 15px;
        z-index: 2;
        background: #ffffff;
    }
    .bullet-line-list li.blue-point:before {
        content: "";
        position: absolute;
        border-radius: 100%;
        width: 12px;
        height: 12px;
        left: -28px;
        top: 6px;
        border: 3px solid #3886ca;
        margin-right: 15px;
        z-index: 2;
        background: #ffffff;
    }
.bullet-line-list li.gray-point:before {
    content: "";
    position: absolute;
    border-radius: 100%;
    width: 12px;
    height: 12px;
    left: -28px;
    top: 6px;
    border: 3px solid gray;
    margin-right: 15px;
    z-index: 2;
    background: #ffffff;
}
.bullet-line-list li.green-point:before {
    content: "";
    position: absolute;
    border-radius: 100%;
    width: 12px;
    height: 12px;
    left: -28px;
    top: 6px;
    border: 3px solid green;
    margin-right: 15px;
    z-index: 2;
    background: #ffffff;
}
    .bullet-line-list li.red-point:before {
        content: "";
        position: absolute;
        border-radius: 100%;
        width: 12px;
        height: 12px;
        left: -28px;
        top: 6px;
        border: 3px solid red;
        margin-right: 15px;
        z-index: 2;
        background: #ffffff;
    }

    .bullet-line-list li:after {
        content: "";
        border: 1px solid #e4e9f0;
        position: absolute;
        bottom: 0;
        left: -23px;
        height: 100%;
    }

    .bullet-line-list li:first-child:after {
        content: "";
        height: 80%;
    }

    .bullet-line-list li:last-child {
        padding-bottom: 0;
    }

        .bullet-line-list li:last-child:after {
            content: "";
            top: 0;
            height: 30%;
        }

/* Preview */
.preview-list .preview-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: .75rem 1.5rem;
    font-size: .875rem;
}

    .preview-list .preview-item:last-child {
        border-bottom: 0;
    }

    .preview-list .preview-item:hover {
        background: #f8f9fa;
    }

    .preview-list .preview-item .form-check {
        margin-top: 8px;
        margin-right: 1rem;
    }

    .preview-list .preview-item .preview-thumbnail {
        color: #ffffff;
        position: relative;
    }

        .preview-list .preview-item .preview-thumbnail img,
        .preview-list .preview-item .preview-thumbnail .preview-icon {
            width: 36px;
            height: 36px;
            border-radius: 100%;
        }

        .preview-list .preview-item .preview-thumbnail .preview-icon {
            padding: 6px;
            text-align: center;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

            .preview-list .preview-item .preview-thumbnail .preview-icon i {
                font-size: 1.125rem;
                margin: 0;
            }

        .preview-list .preview-item .preview-thumbnail .badge {
            border: 2px solid #ffffff;
            border-radius: 100%;
            bottom: 5px;
            display: block;
            height: 14px;
            left: -5px;
            padding: 0;
            position: absolute;
            width: 14px;
        }

    .preview-list .preview-item .preview-item-content {
        line-height: 1;
        padding-left: 15px;
        padding-right: 20px;
    }

        .preview-list .preview-item .preview-item-content:first-child {
            padding-left: 0;
        }

        .preview-list .preview-item .preview-item-content p {
            margin-bottom: 10px;
        }

            .preview-list .preview-item .preview-item-content p .content-category {
                font-family: 'source-sans-pro-semibold', sans-serif;
                padding-right: 15px;
                border-right: 1px solid #e4e9f0;
            }

.rtl .preview-list .preview-item .preview-item-content {
    padding-left: 0;
    padding-right: 1rem;
    margin-right: 0;
    margin-left: auto;
}

.preview-list .preview-item .preview-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

    .preview-list .preview-item .preview-actions i {
        width: 29px;
        color: #e6e9ed;
        height: 29px;
        border: 2px solid #e6e9ed;
        border-radius: 100%;
        padding: 3px 6px;
        display: inline-block;
    }

        .preview-list .preview-item .preview-actions i:first-child {
            margin-right: 10px;
        }

.preview-list.comment-preview .preview-item {
    padding: .87rem 0;
}

    .preview-list.comment-preview .preview-item:first-child {
        padding-top: 0;
    }

    .preview-list.comment-preview .preview-item p {
        line-height: 27px;
    }

.preview-list.bordered .preview-item {
    border-bottom: 1px solid #e4e9f0;
}

    .preview-list.bordered .preview-item:last-child {
        border-bottom: 0;
    }
/**/
.page-link {
    padding: .375rem .75rem;
    color: #3886ca;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
   /* .page-link.next {
        font-weight: inherit;
        font-size: inherit;
        padding: 0px;
        cursor: inherit;
        top: inherit;
        width: inherit;
        margin-top: inherit;
        color: inherit;
        border-radius: 0;
        user-select: inherit;
        -webkit-user-select: inherit;
        border: 1px solid #dee2e6;
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }*/


.sidebar-header {
   /* color: #fff;
    background-color: #3886ca;
    border-color: #3886ca;*/

}

#signIn {
    width: 100%;
    position: relative;
    padding: 120px 0 80px 0;
}


/*gallery*/
* {
    box-sizing: border-box;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
    position: relative;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
    cursor: pointer;
}

/* Next & previous buttons */
/*.prev,
.next {
    cursor: pointer;
  
    top: 0%;
    width: auto;
    padding: 10px;
    margin-top: -10px;
    color: white;
   
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}*/

/* Position the "next button" to the right */
/*.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}*/

    /* On hover, add a black background color with a little bit see-through */
/*    .prev:hover,
    .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }*/

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* Container for image text */
.caption-container {
    text-align: center;
    background-color: #222;
    padding: 2px 16px;
    color: white;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Six columns side by side */
.column {
    float: left;
    width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
    opacity: 0.6;
}

    .active,
    .demo:hover {
        opacity: 1;
    }
/*gallery end*/

.modal-dialog {
   
}
.modal {

    position: absolute;
    top: 200px;
    left: auto;
    right:auto;
    width:  fit-content;
    z-index: 10;
}
.bx-book-plus {
    content: url(../img/bx-book-plus.svg);
}
.bx-file-plus:before {
    content: url("../img/bx-file-plus.svg");
  
}
.bookmarked {
    color: #e7840f;
}


@media screen and (min-width: 900px) {
    .menu_text {
        font-size: inherit;
    }

    .lg-hide {
        display: none;
    }


 
}

    @media screen and (min-width: 768px) {

    }

    @media screen and (min-width: 1200px) {
        .lg-hide {
            display: inherit;
        }


    }
body {
    position: relative;
}

    body::after {
        content: '';
        display: block;
        height: 50px; /* Set same as footer's height */
    }



/* STEPS*/
.stepper-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;

    @media (max-width: 768px) {
        font-size: 12px;
    }
}

    .stepper-item::before {
        position: absolute;
        content: "";
        border-bottom: 2px solid #ccc;
        width: 100%;
        top: 20px;
        left: -50%;
        z-index: 2;
    }

    .stepper-item::after {
        position: absolute;
        content: "";
        border-bottom: 2px solid #ccc;
        width: 100%;
        top: 20px;
        left: 50%;
        z-index: 2;
    }

    .stepper-item .step-counter {
        position: relative;
        z-index: 5;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #ccc;
        margin-bottom: 6px;
    }

    .stepper-item.current {
        font-weight: bold;
    }

    .stepper-item.completed .step-counter {
        background-color: #4bb543;
    }

    .stepper-item.completed::after {
        position: absolute;
        content: "";
        border-bottom: 2px solid #4bb543;
        width: 100%;
        top: 20px;
        left: 50%;
        z-index: 3;
    }

    .stepper-item:first-child::before {
        content: none;
    }

    .stepper-item:last-child::after {
        content: none;
    }
/* STEPS--END*/

.password {
    position: relative;
}

.password-control {
    position: absolute;
    top: 30px;
    right: 6px;
    display: normal;
    width: 24px;
    height: 24px;
    background: url(/img/no-view.svg) 0 0 no-repeat;
}

    .password-control.view {
        background: url(/img/view.svg) 0 0 no-repeat;
    }

.password-login {
    position: relative;
}

.password-control-login {
    position: absolute;
    top: 8px;
    right: 6px;
    display: normal;
    width: 24px;
    height: 24px;
    background: url(/img/view.svg) 0 0 no-repeat;
}

    .password-control-login.view {
        background: url(/img/no-view.svg) 0 0 no-repeat;
    }

.info-box .info h4
 {
    font-size: 12px;
    color: #444;
    margin-top: 26px;
    font-weight: 400;
}