*{
	margin: 0;
	box-sizing: border-box;
}
:root {
    --light-theme: #ffe6f9;
    --big-title: #1a1a1a;
    --small-title: #1a1a1a;
    --emphasized-text: #990073;
    --white-text: #fff;
    --light-text: #e6e6e6;
    --dark-text: #262626;
    --btn-bg: #7C007C;
    --btn-bg-hover: #990073;
    --white-bg: #fff;
    --light-bg: #f2f2f2;
    --light-theme-bg: #ffe6f9;
    --dark-bg: #1a1a1a;
    --dark-bg-colored: #7C007C;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Gilroy", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
a {
    text-decoration: none;
}
.relative {
    position: relative;
}
.btn-style {
    outline: none;
    padding: 10px 20px;
    background-color: var(--btn-bg);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white-text);
    cursor: pointer;
}

.btn-style:hover {
    background-color: var(--btn-bg-hover);
}

.btn-style1 {
    outline: none;
    padding: 10px 20px;
    background-color: var(--light-bg);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--emphasized-text);
    cursor: pointer;
    border: 1px solid var(--btn-bg);
}

.btn-style1:hover {
    background-color: var(--btn-bg-hover);
    color: var(--white-text);
}

.btn-style2 {
    outline: none;
    padding: 15px 20px;
    background-color: var(--dark-bg);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white-text);
    cursor: pointer;
    border: 1px solid var(--btn-bg);
}

.btn-style2:hover {
    background-color: black;
    color: var(--light-text);
}
.dashboard-body {
    background-color: var(--light-bg);
}
.logo {
	/*display: block;*/
	/*margin: auto;*/
}
.logo img {
	width: 150px;
	display: block;
	margin: auto;
}

.dashboard-header {
	display: flex;
	justify-content: space-between;
	height: 100%;
	align-items: center;
}
header {
	height: 80px;
	background-color: #fff;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05);
	z-index: 3;
}
.logo-dashboard a img {
	width: 150px;
}
.profile a {
	color: #777;
	font-size: 15px;
}
.profile a {
	text-decoration: none;
}
.profile a span {
	color: tomato;
	font-size: 15px;
	padding-right: 5px;
}
.profile-details {
    font-size: 13px;
    font-weight: 600;
    margin-top: .5rem;
}
.rounded-circle {
  border-radius: 50% !important; }
/* // from bootstrap */

.profile-dropdown {
    position: relative;
}
.profile-pix {
    width: 120px;
    float: right;
    border: solid 5px #bbb;
    margin-right: 3px;
}
.container {
    width: 90%;
    margin: auto;
}

/* from bootstrap */
.p-2 {
    padding: 1rem;
}
.pr-2 {
    padding-right: 1rem;
}
.pl-2 {
    padding-left: 1rem;
}
.p-3 {
    padding: 1.5rem;
}
.pr-3 {
    padding-right: 1.5rem;
}
.pl-3 {
    padding-left: 1.5rem;
}
.py-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.py-2 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.py-3 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.py-4 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.m-2 {
    margin: 1rem;
}
.mr-2 {
    margin-right: 1rem;
}
.ml-2 {
    margin-left: 1rem;
}
.m-3 {
    margin: 1.5rem;
}
.mr-3 {
    margin-right: 1.5rem;
}
.ml-3 {
    margin-left: 1.5rem;
}
.my-1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.my-2 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.my-3 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.my-4 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.mt-1 {
    margin-top: .7rem;
}
.mt-2 {
    margin-top: 1.5rem;
}
.mt-3 {
    margin-top: 2rem;
}
.mt-4 {
    margin-top: 3rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; 
}
.col-md-1,.col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 768px) {
    .col-md-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%; }
    .col-md-2 {
        flex: 0 0 16.66666%;
        max-width: 16.66666%; }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
    .col-md-5 {
    flex: 0 0 41.6666%;
    max-width: 41.6666%; }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%; }
    .col-md-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%; }
    .col-md-8 {
    flex: 0 0 66.6666%;
    max-width: 66.6666%; }
    .col-md-9 {
    flex: 0 0 74.9999%;
    max-width: 74.9999%; }
    .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
}
.mx-auto {
  margin: auto;
}
/* // from bootstrap */
.img-fluid {
  max-width: 100%;
  height: auto;
}

.sidebar-toggler {
    border: none;
    background-color: transparent;
    font-size: 25px;
    color: var(--dark-text);
    cursor: pointer;
    /*vertical-align: middle;*/
    margin-right: 10px;
}

.sidebar {
    position: fixed;
    z-index: 5;
    top: 100px;
    bottom: 20px;
    width: 250px;
    left: 20px;
    /* border: .5px solid var(--light-theme); */
    border-radius: 15px;
    /* height: 100%; */
    /* padding: 15px; */
    background-color: var(--white-bg);
    /* background-color: var(--dark-bg-colored); */
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    overflow-y: auto;
}
.sidebar-list {
    margin-top: 20px;
    /* background-color: var(--white-bg); */
    padding-left: 0;
}
.sidebar-list li {
    padding: 15px 15px 15px 25px;
    /* border-bottom: 1px solid var(--emphasized-text); */
    list-style: none;
    margin-left: 0;
    border-radius: 0 25px 25px 0;

}

.sidebar-list li:hover {
    background-color: var(--light-theme);
    /* background-color: var(--light-bg); */
}

.sidebar-list li a {
    color: var(--dark-text);
    display: inline-block;
    width: 100%;
    font-size: 14px;
}
    
.sidebar-list li a:hover {
    color: var(--emphasized-text);
}
.active-link {
    background-color: var(--light-theme);
}

.right-section {
    box-sizing: border-box;
    margin-top: 20px;
    width: calc(100% - 270px);
    padding: 80px 30px;
    margin-left: 270px;
    transition: all 0.5s ease;
}
body.active .sidebar {
    left: -250px;
}
body.active .right-section {
    width: 100%;
    margin-left: 0px;
}
@media (max-width: 1080px) {
    .sidebar {
        left: -250px;
    }
    .right-section {
        width: 100%;
        margin-left: 0;
    }
    body.active .sidebar {
        left: 0px;
    }
    body.active .right-section {
        width: 100%;
        margin-left: 0;
    }
}
@media (max-width: 430px) {
    .desktop-only {
        display: none;
    }
    .flex-m-60, .flex-m-50, .flex-m-40, .flex-m-30, .flex-m-25, .flex-m-20 {
        width: 100%;
    }
    .sidebar {
        top: 80px;
    	border-radius: 0 15px 15px 0;
    }
    
    .container {
        width: 95%;
    }
    .right-section {
        padding: 80px 10px;
    }
    
}
/* adding sidebar */

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    /* border: 1px solid rgba(0, 0, 0, 0.125); */
    border-radius: 0.25rem;
    box-shadow: 2px 5px 7px 0 rgba(31, 45, 61, 0.2);
}
.card-header {
    position: relative;
	padding: 0 15px;
    height: 70px;
    line-height: 70px;
    border-bottom: 1px solid var(--light-bg);
}
.card-body {
	padding: 15px;
}

.card-footer {
	/*display: grid;*/
	/*position: relative;*/
	border-top: 1px solid var(--light-text);
	padding: 0 15px;
	height: 50px;
    line-height: 50px;
	background: var(--white-bg);
	text-align: center;
}
.card-footer p {
	color: var(--dark-text);
	/* margin: auto 0; */
	font-size: 14px;
}
.widget {
    background-color: var(--dark-bg-colored);
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 1rem;
}
.widget h1 {
  font-size: 1.2rem;
  color: var(--light-text);
  text-align: center;
}
.widget p {
  font-size: 1.5em;
  margin-top: .5em;
  color: #fff;
  text-align: center;
}
.white-round {
    background-color: var(--white-bg);
}
/* Table */
table {
    width: 100%;
    white-space: nowrap;
}
.table {
    border-radius: 15px;
    border-top: 2px solid var(--btn-bg-hover);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
	width: 100%;
	padding: 1rem;
	margin-bottom: 1rem;
	color: #212529;
	/*border: 2px solid var(--border-lighter);*/
	border-collapse: collapse;
	background: var(--bg-lighter);
}

.table th,
.table td {
    text-align: left;
	padding: 0.75rem;
	vertical-align: top;
	border: none;
}
.table td {
	border-top: 1px solid var(--light-text);
}

.table thead th {
    color: var(--dark-text);
    font-weight: 600;
	vertical-align: bottom;
	/*border-bottom: 2px solid var(--border-lighter);*/
}

/*.table tbody+tbody {
	border-top: 2px solid var(--border-lighter);
}*/


.table th {
	color: var(--dark-text);
    font-size: 13px;
}

.table td {
	color: var(--font-semidark);
	font-size: 13px;
}

.table-striped tbody tr:nth-of-type(odd) {
	background-color: rgba(var(--table-striped-bg), 0.05);
}
/*.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}*/
@media (max-width: 430px) {
    .table {
        padding: 5px;
    }

}
/* // table */

/* forms */

.login-form, .transaction-form {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 1.5rem;
    padding-bottom: 90px;
}
.transaction-form {
    background-color: var(--white-bg);
}

.login-form input, .login-form select, .transaction-form input, .transaction-form select, .transaction-form textarea, .type-message textarea {
    resize: none;
    display: inline;
    width: 100%;
    padding: 15px 15px 15px 15px;
    outline: none;
    border: 1px solid var(--light-text);
    border-radius: 5px;
    font-size: 13px;
    background-color: var(--white-bg);
}
.type-message textarea {
    resize: none;
    width: block;
    width: calc(100% - 60px);
    margin-left: 10px;
    /* margin-right: 20px; */

}

textarea:focus, input:focus {
    border: 1px solid var(--emphasized-text);
}
label {
    font-size: 13px;
    display: block;
    margin: 20px 0 10px;
}
.login-form a {
    display: inline-block;
    padding: 15px;
    width: 100%;
    text-align: center;
}
.ordinary-link {
    text-align: left;
    color: var(--dark-text);
    padding: 0px;
    font-size: 14px;
}
.login-form button, .transaction-form button {
    width: 100%;
    padding: 15px;
}

input[type="radio"], input[type="checkbox"] {
    padding: 0;
    width: 15px;
    display: inline;
    cursor: pointer;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
    -webkit-appearance: listbox;
}

.checkbox-label {
	display: inline;
	margin-left: 10px;
	margin-right: 20px;
	cursor: pointer;
    color: var(--dark-text);
}

.checkbox-label a {
	color: var(--icon-theme);
	font-style: italic;
}


.label-value, .two-fields, .three-fields {
    display: flex;
    justify-content: space-between;
}

.two-fields div {
    width: 49%;
}
.three-fields div {
    width: 32.5%;
}
.label-value .country {
    display: inline;
    width: 80px;
    background-color: var(--light-bg);
    border-right: none;
    border-radius: 5px 0 0 5px;
}

.label-value .value {
    display: inline;
    width: calc(100% - 80px);
    border-radius: 0 5px 5px 0px;
}

fieldset {
	margin: 0;
	border: none;
	outline: none;
	padding: none;
}
.add-item {
	display: block;
	margin: 15px 0;
	font-size: 13px;
	font-weight: 500;
	color: var(--emphasized-text);
	text-transform: uppercase;
}
#items p {
    font-size: 13px;
}
#items .remove-item {
	font-size: 13px;
	color: tomato;
	float: right;
}


.input-icon {
    color: #aaa;
    position: absolute;
    z-index: 2;
    top: 70%;
    transform: translate(0, -50%);
    right: .75rem;
    font-size: 18px;
    cursor: pointer;
}

.message-input-icon {
    /* height: 20px; */
    /* line-height: 40px; */
    /* margin-left: 0px; */
    /* margin-top: 20px; */
    position: absolute;
    left: calc(100% - 50px);
    cursor: pointer;
    color: var(--btn-bg);
    top: 50%;
    transform: translate(0, -50%);
}

.input-icon-left {
    margin-left: calc(10px - 100%);
    /* cursor: pointer; */
    color: var(--btn-bg);
}

.transaction-form .for-icon-left {
    padding-left: 60px;
}
.verify {
    cursor: pointer;
    display: inline-block;
    margin-top: 5px;
    padding: 5px;
    border-radius: 15px;
    font-size: 12px;
    color: var(--emphasized-text);
    background-color: var(--light-bg);
}
form .invalid {
    border-color: red;
}
form .valid {
    border-color: var(--light-text);
}
/* // forms */

.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(../images/Preloader_11.gif) center no-repeat rgba(255, 255, 255, 0.80);
}

.loader-success {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(../images/success.gif) center no-repeat rgba(255, 255, 255, 0.80);
}

.invalid {
  /*background-color: #ffdddd;*/
  /*border-color: red;*/
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.valid {
  /*background-color: #ffdddd;*/
  border-color: transparent;
}
.print-container {
    padding: 20px;
}
.print-inner {
    border: 2px solid #888;
    border-radius: 15px;
    padding: 30px;
}
.print-header {
    text-align: center;
}
.print-header .name {
    font-size: 15px;
    margin-top: 10px;
}
.print-header .sub-name {
    font-size: 13px;
    margin-top: 5px;
}

.print-header .title {
    font-size: 12px;
    margin-top: 10px;
    font-weight: bold;
    text-decoration: underline;
}
.bio-data {
    font-size: 13px;
}
@media (max-width: 480px) {
    .bio-data {
        font-size: 8px;
        overflow-x: auto;
    }
    .print-container {
        padding: 10px;
    }
    .print-inner {
        border: 2px solid #888;
        border-radius: 15px;
        padding: 10px;
    }
}
.base-signature {
    width: 33.33333%;
}
.base-signature p {
    font-size: 12px;
    margin: 10px;
    padding-top: 10px;
    text-align: center;
    border-top: 2px solid #000;
}
.center-box {
    border: 1px solid #000;
    width: 200px;
    height: 80px;
    line-height: 80px;
    text-align: center;
}
.print-table td {
    padding: .1rem;
}
.broadsheet-table {
    border-collapse: collapse;
}
.print-broadsheet-table td {
    border: 2px solid var(--dark-text);
    padding-left: .1rem;
    padding-right: .1rem;
    text-align: center;
}
/* autocomplete css */
.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
    max-height: 300px;
    overflow-y: auto;
    background-color: var(--white-bg);
}

.autocomplete-items div {
    /* height: 40px; */
    line-height: 40px;
    padding-left: 10px;
    cursor: pointer;
    background-color: #fff; 
    border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
    background-color: #e9e9e9; 
}

.autocomplete-items a {
    display: block;
    line-height: 40px;
    padding-left: 10px;
    border-bottom: 1px solid #d4d4d4;
    color: var(--dark-text);
    font-size: 14px;
}

.autocomplete-items a:hover {
    color: var(--emphasized-text);
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
    background-color: DodgerBlue !important; 
    color: #ffffff; 
}
/* // autocomplete css */
/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*padding: 15px;*/
    overflow-y: auto;
    overflow-x: hidden;
    outline: none;
    background: rgba(0,0,0,0.5);
    /* background: rgba(var(--modal-bg), 0.4); */
    /*opacity: 0.4;*/
    transition: transform 0.3s ease-out;
}

.modal-content {
    /* line-height: 100%; */
    max-width: 550px;
    margin: auto;
    border-radius: 0.3rem;

}

@media (max-width: 430px) {
    .modal-content {
        margin-right: 20px;
        margin-left: 20px;
    }

}

.modal-dialog-centered {
    display: flex;
    /* align-items: center; */
    min-height: calc(100% - 1rem);
    flex-direction: column;
    justify-content: center;
}
.modal .close {
    float: right;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    /* background-color: var(--light-bg); */
    color: var(--dark-text);
    /* width: 40px; */
    /* height: 40px; */
    /* line-height: 70px; */
    border-radius: 25px;
    padding: 10px;
}

.modal .close:hover {
    color: #000;
}

/* // Modal */

/* toggle switch */

.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 28px;
}

.slider.round:before {
  border-radius: 50%;
}

/* switch */

.alert {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    min-width: 350px;
    padding: 5px;
    border-radius: 4px;
    min-height: 50px;
    /*line-height: 50px;*/
    background: var(--light-theme);
    color: var(--dark-bg-colored);
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    z-index: 1001;
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.05);
    transition: all 2s ease;
}
.alert .close {
    background-color: #fff;
    padding: 8px;
    font-size: 20px;
    border-radius: 15px;
    cursor: pointer;
    float: right;
}


.letter-info {
    position: relative;
}
.print-inner {
    overflow: hidden;
}
.letter-info .title {
    text-align: center;
    margin: 1rem 0;
    text-transform: uppercase;
}

.letter-info p {
    font-size: 12px;
    line-height: 1.5 !important;
    text-align: justify;
/*    color: red;*/
}
.letter-info ol {
    margin: 0;
    padding: 0;
}

.letter-info .main-list {
    font-size: 12px;
    margin-left: 0px;            
    text-align: justify;
    list-style-position: outside;
    padding-left: 1rem;
    margin-top: 1rem;
}

.letter-info .sublist-roman {
    list-style-type: upper-roman;
    font-size: 12px;
    margin-top: 1rem;
    list-style-position: outside;
    padding-left: 1rem;
}


.letter-info .main-list li, .letter-info .sublist li {
    padding-left: 20px;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.letter-info .sublist li {
    margin-bottom: 0.3rem;
    padding-left: 15px;
}
.letter-head-registrar-signature {
    display: block;
    width: 100px;
    margin-top: 15px;
    margin-left: -20px;
}
.letter-head-bottom-graphics {
    position: absolute;
    right: 0;
    bottom: -5px;
    width: 100%;
}

/* Container that looks like a select */
.searchable-select {
    position: relative;
    display: inline-block;
    width: 100%;
}
/* The visible input (acts as the "button") */
.searchable-select input {
    width: 100%;
    /*background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M4.5 8L0 3h9z' fill='%23333'/%3E%3C/svg%3E") no-repeat right 10px center;*/
    cursor: pointer;
    outline: none;
    /*text-transform: uppercase;*/
}
.searchable-select .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.searchable-select input {
    flex: 1;
    padding-right: 34px; /* make room for the X */
}
.searchable-select .clear-btn {
    width: 30px;
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    font-size: 1.2em;
    line-height: 1;
    display: none; /* hidden by default */
}
.searchable-select .clear-btn.show { display: block; }
.searchable-select .clear-btn:hover { color: #333; }
/* Dropdown list */
.searchable-select .options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-top: none;
    background: #fff;
    z-index: 1000;
    display: none;
}
.searchable-select .options.show { display: block; }
.searchable-select .option {
    padding: 8px 10px;
    cursor: pointer;
    font-size: 11px;
}
.searchable-select .option:hover,
.searchable-select .option.selected {
    background: #f0f0f0;
}