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

.mb-10px {
    margin-bottom: 10px;
}

.mt-19px {
    margin-top: 19px;
}

.mb-19px {
    margin-bottom: 19px;
}

.mt-20px {
    margin-top: 20px;
}

.mb-20px {
    margin-bottom: 20px;
}

.mt-24px {
    margin-top: 24px;
}

.mb-24px {
    margin-bottom: 24px;
}

.mt-30px {
    margin-top: 30px;
}

.mb-30px {
    margin-bottom: 30px;
}

.pl-30px {
    padding-left: 30px;
}

.mt-35px {
    margin-top: 35px;
}

.mb-35px {
    margin-bottom: 35px;
}

.mt-45px {
    margin-top: 45px;
}

.mt-55px {
    margin-top: 55px;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-default {
    cursor: default;
}

/* custom-select =====> start*/
.form-select-custom {
    background-color: #266ea5;
    position: relative;
    height: 100%;
}

.form-select-custom select {
    display: none;
}

.form-select-custom .select-items>div,
.form-select-custom .select-selected {
    display: flex;
    user-select: none;
    cursor: pointer;
    width: 100%;
    align-items: center;
    padding-left: 5px;
    border-radius: 5px;
}

.form-select-custom .select-selected {
    height: 100%;
    padding-left: 40px;
    padding-right: 20px;
    display: flex;
    justify-content: space-between;
}

.form-select-custom .select-items>div {
    padding-top: 5px;
    padding-bottom: 5px;
    transition: 0.3s;
}

.form-select-custom .select-items>div>div:first-child {
    flex: 2;
}
.form-select-custom .select-items>div>div:last-child {
    flex: 3;
}

.form-select-custom .select-items>div:hover {
    background-color: #003366;
    transition: 0.3s;
    color: white;
}

.form-select-custom .select-items>div.active {
    background-color: #003366;
    color: white;
}

.form-select-custom .select-items {
    background-color: #b2c8db;
    z-index: 20;
    max-height: 500px;
    overflow-y: auto;
    padding: 10px 15px;
    color: #003366;
    border-radius: 15px;
    position: relative;
    width: 100%;
}

.form-select-custom.select-left-icon .select-selected{
    justify-content: flex-start;
    gap: 15px;
}

.form-select-custom .select-hide {
    display: none;
}
/* custom-select =====> end */

/* custom-input =====> start */
.custom-input {
    width: 100%;
    height: 70px;
    background-color: transparent;
    outline: none;
    border: none;
    color: white;
}
/* custom-input =====> end */

/* custom-textarea =====> start */
.custom-textarea {
    width: 100%;
    height: 90px;
    background-color: transparent;
    outline: none;
    color: white;
    border: 1px solid #00a9ea;
    border-radius: 10px;
    padding: 10px;
}
/* custom-textarea =====> end */

/* custom dropdown ====> start */
.custom-input-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.custom-input-dropdown .search-input {
    display: flex;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
    background-color: #00447e;
}

.custom-input-dropdown .search-input i {
    font-size: 25px;
    cursor: pointer;
}

.custom-input-dropdown .list-detail {
    background-color: #266ea5;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    max-height: 300px;
    overflow-y: auto;
}

.custom-input-dropdown .list-detail .detail {
    border-top: 1px solid #005696;
    border-bottom: 1px solid #005696;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #266ea5;
    transition: 0.3s;
    cursor: pointer;
    padding-left: 30px;
    padding-right: 30px;
}

.custom-input-dropdown .list-detail .detail:hover {
    background-color: #003366;
    transition: 0.3s;
}

.custom-input-dropdown .list-detail .detail.active {
    background-color: #003366;
}

.custom-input-dropdown .list-detail.d-none {
    display: none;
}

/* custom dropdown ====> end */

.custom-sub-title {
    font-family: "DinPro Medium", serif;
    font-size: 18px;
    line-height: 36px;
    margin-top: 24px;
}

.custom-content {
    font-family: "DinPro", serif;
    font-size: 16px;
    line-height: 24px;
}

.info-button {
    display: flex;
    justify-content: center;
}

.bold {
    font-weight: bold;
}

.underline {
    text-decoration: underline;
}

.bold-underline {
    font-weight: bold;
    text-decoration: underline;
}

.info-button button, .info-button input {
    height: 44px;
    width: 300px;
    border-radius: 10rem;
    font-size: 16px;
    font-family: "DinPro", sans-serif;
    cursor: pointer;
    background-color: #003366;
    border: none;
    color: white;
    transition: 0.3s;
    outline: none;
}

.info-button button:hover, .info-button input:hover {
    background-color: #00a9ea;
    transition: 0.3s;
}

.custom-edit-table {
    width: 100%;
}

.custom-edit-table, .custom-edit-table tr th, .custom-edit-table tr td {
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.custom-edit-table tr td {
    padding-left: 10px;
    padding-right: 10px;
}

.custom-edit-table tr td:first-child {
    width: 30px;
}

/* custom alert pop-up  start*/

.custom-alert-popup {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 51, 102, 0.5);
    position: absolute;
    top: 0;
    z-index: 30;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.custom-alert-popup .alert-body {
    width: 320px;
    border: 1px solid white;
    border-radius: 8px;
    padding: 15px 25px;
    color: white;
    display: flex;
    gap: 5px;
    position: relative;
    cursor: pointer;
}

.custom-alert-popup .alert-body.success {
    background-color: #39b54a;
}

.custom-alert-popup .alert-body.error {
    background-color: #ed1c24;
}

.custom-alert-popup .alert-text-part {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-alert-popup .alert-title-text {
    font-size: 19px;
}

.custom-alert-popup .alert-message-text {
    font-size: 14px;
}

.custom-alert-popup .alert-icon-part {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 25px;
}

.custom-alert-popup .custom-alert-button {
    display: flex;
    gap: 50px;
}

.custom-alert-popup .custom-alert-button button {
    width:100px;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    outline: none;
}

/* custom alert pop-up  end*/
