/* common */
.mrl10 {
    margin-left: 10px;
}

.mrr10 {
    margin-right: 10px;
}

.mrt10 {
    margin-top: 10px;
}
.mrl5 {
    margin-left: 5px;
}

.mrr5 {
    margin-right: 5px;
}

.mrt5 {
    margin-top: 5px;
}

.p5 {
    padding: 5px;
}

.right {
    text-align: right;
}

.left {
    text-align: left;
}

.white-background {
    background-color: white;
}

.field-title {
    text-align: right;
    font-weight: bold;
}

.inline-block {
    display: inline-block;
}

.normal-label {
    text-align: left !important;
    font-weight: normal !important;
}

.app-font {
    font-family: sans-serif !important;
}

.app-button {
    width: 100px;
    margin-top:2px;
}

.display-flex {
    display: flex;
}

.line {
    height: 1px;
    background-color: brown;
    margin-top: 10px;
}

.line-vote {
    height: 1px;
    background-color: brown;
    margin: 0px auto;
    width: 50%;
}

.text-align-center {
    text-align: center !important;
}

.text-align-left {
    text-align: left !important;
}

.text-align-right {
    text-align: right !important;
}

.modal-title {
    color: #e0115f !important;
    font-family: serif;
    font-weight: 700;
}

.full-width {
    width: 100%;
}

.container {
    max-width: 90% !important;
}

md-select {
    margin: 0px !important;
}

.mrnone {
    margin-left: none !important;
    margin-right: none !important;
}

.vertical-center-div {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column; /* column | row */
}
/* home page */
.confirm-capcha {
    display: flex;
}

.capcha {
    color: #2245cc;
    font-weight: 600;
    padding: 10px;
    background: lightgray;
}

.info-input-confirm {
    font-size: 18px;
    font-style: italic;
    text-align: left;
}

@media (min-width: 768px) {
    .custom-panel {
        width: 90%;
        margin: 0px auto;
        box-shadow: 2px 2px 2px 2px grey;
        background-color: white;
        padding: 20px;
        margin-top: 30px;
    }
}


.home-custom-input {
    /* width: 300px; */
}

.form-title {
    color: #b60081;
    font-size: 1.5em;
    margin-top: 8px;
    margin-bottom: 2px;
}

.home-title {
    font-weight: 700;
    font-size: 22px;
    font-family: serif;
    color: gray;
    /* text-align: right; */
    margin-bottom: 40px;
}

.home-custom-label {
    font-size: 16px;
    font-weight: 500;
}

.home-modal-content {
    width: 800px !important;
    right: 250px !important;
}

/* application form */
.section-title {
    color: #b60081;
    font-size: 1.5em;
    margin-top: 8px;
    margin-bottom: 2px;
    text-align: left;
}

.element-title {
    font-weight: bold;
}

.content {
    border: 2px dashed gray;
    padding: 10px;
}

.form-group {
    /* margin-bottom: 0px !important; */
}

.center-checkbox {
    margin-top: 5px;
    margin: 0px auto;
}
/* curriculumn-vitae */
.container-fluid {
    max-width: 90% !important;
}

.title-page {
    width: 50%;
    margin: auto;
    text-align: center;
    color: #b60081;
}

.title-group {
    color: #b60081;
    font-size: 1.5em;
    margin-top: 8px;
    margin-bottom: 2px;
}

.btn-custom {
    background: #b60081;
    color: white;
}

label {
    font-weight: bold;
}

.border-group {
    border: 2px dashed gray;
    padding: 10px;
}

#others {
    position: absolute;
    left: 146px;
    top: -2px;
    width: calc(200% - 138px);
}

.form-row {
    margin-bottom: 8px;
}

    /*.form-row label {
        width: 100%;
        text-align: end;
    }*/

.separator {
    border: 2px dashed gray;
    padding: 10px;
}

.separator1 {
    border: 1px dashed gray;
}

/* Menu */

#sidebar-wrapper {
    min-height: 100vh;
    margin-left: -15rem;
    -webkit-transition: margin 0.25s ease-out;
    -moz-transition: margin 0.25s ease-out;
    -o-transition: margin 0.25s ease-out;
    transition: margin 0.25s ease-out;
}

    #sidebar-wrapper .sidebar-heading {
        padding: 0.875rem 1.25rem;
        font-size: 1.2rem;
    }

    #sidebar-wrapper .list-group {
        width: 15rem;
    }

#page-content-wrapper {
    min-width: 100vw;
}

#wrapper.toggled #sidebar-wrapper {
    margin-left: 0;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    float: right;
}

    /* Hide default HTML checkbox */
    .switch input {
        display: none;
    }

/* The slider */
.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: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input.default:checked + .slider {
    background-color: #444;
}

input.primary:checked + .slider {
    background-color: #2196F3;
}

input.success:checked + .slider {
    background-color: #8bc34a;
}

input.info:checked + .slider {
    background-color: #3de0f5;
}

input.warning:checked + .slider {
    background-color: #FFC107;
}

input.danger:checked + .slider {
    background-color: #f44336;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

@media (min-width: 768px) {
    #sidebar-wrapper {
        margin-left: 0;
    }

    #page-content-wrapper {
        min-width: 0;
        width: 100%;
    }

    #wrapper.toggled #sidebar-wrapper {
        margin-left: -15rem;
    }

    .list-group-item-action {
        color: #b60081 !important;
        font-weight: 600;
        text-align: center !important;
    }

    a.bg-light-custom:focus, a.bg-light-custom:hover, button.bg-light-custom:focus, button.bg-light-custom:hover {
        background-color: #b60081 !important;
        color: white !important;
    }

    .list-group-flush:last-child .list-group-item:last-child {
        border-bottom: 1px;
    }

    .list-group-flush .list-group-item {
        border: 1px solid #b60081 !important;
    }

    .page-link {
        color: #b60081;
    }

    .btn-light:not(:disabled):not(.disabled).active {
        background-color: #b60081;
        color: white;
    }

    .modal-footer {
        border-top: none;
    }

    .modal-content {
        width: 600px !important;
    }
}

.page-item.active .page-link {
    background-color: #b60081;
    border-color: #b60081
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #b60081;
}

.custom-control-input:checked ~ .custom-control-label::before {
    background-color: #b60081;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #b60081;
}

.custom-control-input:checked ~ .custom-control-label::before {
    background-color: #b60081;
}

.dropdown-menu {
    display: block !important;
    top: 100% !important;
}

.print-content {
    display: none;
}

@media print {
    .print-content {
        display: none;
    }
}

.right-box {
    display: flex;
    align-items: flex-end;
    justify-content:  flex-end;
}
.center-box
{
    display: flex;
    align-items: center;
    justify-content: center;
}
.aeon-logo {
    width: 140px;
    margin-top:20px;
}

*{
    font-size:12px;
}
@media (min-width: 276px) {
    .text-align {
        text-align: left
    }
}

@media (min-width: 576px) {
    .text-align {
        text-align: left
    }
}

@media (min-width: 768px) {
    .text-align {
        text-align: left
    }
}


@media (min-width: 992px) {
    .text-align {
        text-align: right
    }
}


@media (min-width: 1200px) {
    .text-align {
        text-align: right
    }
}

.btn-danger, .btn-danger:hover, .btn-danger:active {
    background-color: #b60081 !important;
    border-color: #b60081 !important;
}

.btn-red {
    background-color: #b60081 !important;
    border-color: #b60081 !important;
}

.ng-confirm-type-red .ng-confirm-box {
    border-top-color: #b60081 !important;
}

.table td, .table th {
    padding:0;
}

.table > tbody > tr > td, .table > tbody > tr > th {
    padding: .75rem;
}