﻿@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins",sans-serif;
    font-size: 14px;
    border: none;
}

body {
    background-color: #f9f9f9;
}

.wrapper {
    width: 420px;
    padding: 30px 20px;
    position: absolute;
    bottom: 50px;
    right: 0;
    overflow: hidden;
}

#show-toast {
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    background-color: #101020;
    color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    cursor: pointer;
}

#toast {
    width: 380px;
    height: 80px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(75, 50, 50, 0.05);
    border-left: 8px solid #47d764;
    border-radius: 7px;
    display: grid;
    grid-template-columns: 1.2fr 6fr 0.5fr;
    transform: translate(400px);
    transition: 1s;
    position: relative;
    z-index: 1111;
}

.container-1, .container-2 {
    align-self: center;
}

    .container-1 i {
        font-size: 40px;
        color: #47d764;
    }

    .container-2 p:first-child {
        color: #101020;
        font-weight: 600;
        font-size: 16px;
    }

    .container-2 p:last-child {
        font-size: 12px;
        color: #656565;
        font-weight: 400;
    }

#toast button {
    align-self: flex-start;
    background-color: transparent;
    font-size: 25px;
    line-height: 0;
    color: #656565;
    cursor: pointer;
}

p {
    margin: 0 0 0px;
}

.ShowToastPop {
    transform: translate(0) !important;
}


.swal-footer {
    text-align: center !important;
}


/*fieldset.scheduler-border {
    border: 1px groove #ddd !important;
    padding: 0 1.4em 1.4em 1.4em !important;
    margin: 0 0 1.5em 0 !important;
    -webkit-box-shadow: 0px 0px 0px 0px #000;
    box-shadow: 0px 0px 0px 0px #000;
    width:70%;
}

legend {
    border-bottom: none !important;
    width: auto;
    font-size: 20px;
}
*/
.addPageHeading {
    color: #fff;
    background: rgb(173 126 129);
    padding: 2px 20px;
    position: relative;
    top: 22px;
    left: 20px;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    font-size: 15px;
    display: inline-block;
    margin: 0;
}

.editprofilecss .card {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.editprofilecss .card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    /* padding: 1.25rem; */
    padding-bottom: 20px !important;
    /* padding-right: 20px; */
}

.mr-20 {
    margin-right: 20px;
}

.editprofilecss .panel {
    border: 1px solid #ddd;
    margin: 20px;
}

.editprofilecss .panel-body {
    padding-bottom: 0px;
}

.editprofilecss .card-header {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    background: #0a406b !important;
    color: #fff;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.btn_Submit {
    /* padding-inline: 50px; */
    background-color: #F04E30;
    color: white !important;
}

h5.card-title {
    padding-left: 10px;
}

h5, .h5 {
    font-size: 20px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-20 {
    margin-top: 20px !important
}

button.dt-button.buttons-columnVisibility.active {
    background: #86b6d4 !important;
}

/*Custom Check box starts*/
.main {
    display: block;
    position: relative;    
    margin-bottom: 0px;
    cursor: pointer;
    margin-right:30px;
}

/* Hide the default checkbox */
input[type=checkbox] {
    visibility: hidden;
}

/* Creating a custom checkbox
        based on demand */
.geekmark {
    position: absolute;
    top: 1px;    
    height: 20px;
    width: 20px;
    background-color: #ffffff;
    border: 2px solid #3333336b;
}

/* Specify the background color to be
        shown when hovering over checkbox */
.main:hover input ~ .geekmark {
    background-color: none;
}

/* Specify the background color to be
        shown when checkbox is active */
.main input:active ~ .geekmark {
    background-color: none;
}

/* Specify the background color to be
        shown when checkbox is checked */
.main input:checked ~ .geekmark {
    background-color: green;
}

/* Checkmark to be shown in checkbox */
/* It is not be shown when not checked */
.geekmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Display checkmark when checked */
.main input:checked ~ .geekmark:after {
    display: block;
}

/* Styling the checkmark using webkit */
/* Rotated the rectangle by 45 degree and
        showing only two border to make it look
        like a tickmark */
.main .geekmark:after {
    left: 6px;
    bottom: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*Custom Check box ends*/

.accordion-toggle td:first-child:before {
    font-family: 'Glyphicons Halflings'; /* essential for enabling glyphicon */
    content: "\e082"; /* adjust as needed, taken from bootstrap.css */
    font-size: 100%;
    padding-top: 1px;
}

.accordion-toggle.collapsed td:first-child:before {
    content: "\e081"; /* adjust as needed, taken from bootstrap.css */
    font-size: 100%;
    padding-top: 1px;
}

select.form-select-sm.datafieldDropdown {
    background-color: #dadada94 !important;
}

.modal-dialog.modal-xl.extralargemodal {
    width: 80%;
}

.navbar-header {
    margin-top: 5px;
}


/*Logout Dropdown starts*/
.logoutbtn {
    margin-top: 10px !important;
    min-width: 200px !important;
}

.btn-group.logoutbtnblock {
    float: right;
}

.dropdown-menu.logoutmenu {
    margin-left: 0px;
    padding: 8px 8px !important;
    left:10% !important;
}

a.logoutitem {
    font-size: 14px;
    margin: 30px;
    font-weight: normal;
    font-family: inherit;
}

i.glyphicon.glyphicon-off.logouticon {
    font-weight: 700;
}

.navbar-inverse .navbar-brand {
    color: #e4e2e2;
}
/*Logout Dropdown ends*/
.col-md-6.col-lg-4.mb-5.mb-lg-0 {
    width: 333px;
}

a:hover, a:focus {
    color: #23527c;
    text-decoration: none;
}

div.dataTables_wrapper div.dataTables_paginate {
    margin: 0;
    /* white-space: nowrap; */
    text-align: right;
    /* width: 100px; */
    display: inline-block;
    float: right;
}

div.dataTables_wrapper div.dataTables_info {
    padding-top: 0.85em;
    white-space: nowrap;
    display: inline-block;
}

#noty_layout__top {
    left:15% !important;
    width: 70% !important;
}

/*@media (min-width: 992px) {
    .container {
        width: auto !important;
        height: auto !important;
    }
}*/



/*Loader css functionality starts*/
#loader {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
    background: rgb(247 249 248 / 72%);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}
/*Loader css functionality ends*/