#dropdown-user {
    margin-left: 69%;
}

.main_content{
    width: 65%;
    margin: 5% auto;

}

button#add-service {
    width:180px;
}

.sub_content {
    height: 15em;
    width: 35%;
    background-color: grey;
}

i#eyeIcon {
    cursor: pointer;
}
.test{
    display: flex;
    justify-content: space-evenly;
}

.card-deck{
    display: flex;
    justify-content: space-between;
}

.card-deck .card{
    width: 30%;
}

.btn-primary {
    background-color: #283e4a;
    border-color: #283e4a;
    display: block;
    width: 100%;
}

.input-group{
    margin-bottom: 1%;
}

.forgot-password{
    text-decoration: none;
    color: #283E4A;
}

.fa.fa-envelope, .fa-circle-check{
    font-size: 150px;
}

.success-inner{
    text-align: center;
}

.groups-title{
    display: flex;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
    padding-left: 10px;
    position: relative;
}

.groups-title span {
    padding-top: 5px;
    padding-left: 25px;
    cursor: pointer;
}

.groups-title button {
    margin-left: 20px;
}

.inactive-title-tab {
    opacity: 50%;
}

.user-space{
    position: absolute;
    right: 280px;
    padding-top: 5px;
}

.btn-action-upload{
    /*position: absolute;
    right: 70px;*/
    background-color: #09affb;
    color: white;
}

.btn-action-upload:hover{
    color: white;
    background-color: #098ffb;
}

.head-cas tr th, #groups tr th{
    background-color: #f9fafb;
}

#dicoms thead th, #groups thead th{
    font-size: 13px;
    border-bottom: none;
    border-top: none;
    color: #8c95a2;
    padding-bottom: 20px;
    padding-top: 20px;
}

.table-responsive {
    width: 95%;
    margin: 20px auto 0;
}


td div.age, td div.sex {
    margin: 0;
    padding: 0;
    font-size: 12px;
    display: inline-block;
    color: #8c95a2;
}

td.dicom-info{
    background-color: rgba(192, 192, 192, 0.2);
}

.swal2-html-container {
    overflow: hidden !important;
}

.settingsMenu button {
    font-size: 15px;
    font-weight: bold;
    margin-left: 10px;
    border-radius: 10px;
    border: 1px solid #09affb;
    background-color: white;
    color: #09affb;
    padding: 7px 12px;
}

.settingsMenu button:hover{
    background-color: #09affb;
    color: white;
    cursor: pointer;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #f8f9fa;
    padding: 10px 20px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

#action-toolbar{
    margin: 0 29%;
    justify-content: space-evenly;
}

#action-toolbar-multiple{
    margin: 0 40%;
    justify-content: space-evenly;
}

.block {
    padding: 20px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}

#selected_user{
    width: 100%;
    height: 2em;
    font-size: 1.5em;
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
}

.tag-insti{
    background-color: #e6e7e7;
    font-size: 15px;
    font-weight: bold;
    padding: 11px;
    border-radius: 10rem;
}

.blockbtn{
    margin-top: 50px;
}

.btn-vioovr{
    background-color: #09affb;
    color: white;
    border-radius: 10px;
    border: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    padding: 10px 15px;
}

a{
    text-decoration: none;
}

.sortable {
    cursor: pointer;
    position: relative;
}

.sortable:after {
    content: '\2191'; /* Up arrow */
    position: absolute;
    margin-left: auto;
    top: 12px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 20px;
}

.sortable.ascending:after {
    opacity: 1;
}

.sortable.descending:after {
    content: '\2193'; /* Down arrow */
    opacity: 1;
}

.search-icon {
    cursor: pointer;
    margin-left: 5px;
}

.filter-row {
    background-color: #f9f9f9;
}

.filter-input {
    width: 100%;
    box-sizing: border-box;
}

.no-gutters {
    margin-left: 2%;
}

.no-gutters div{
    padding: 0;
}

.no-gutters button{
    color: white;
    font-size: 18px;
    border-radius: 10px 0 0 10px;
    background-color: #0995d6;
    height: 50px
}

.no-gutters input{
    color: white;
    font-size: 18px;
    border-radius: 0 10px 10px 0;
    background-color: #0995d6;
    height: 50px;
    border: none;
}

.no-gutters input:focus,
.no-gutters input:active {
    background-color: #0995d6;
    border: none;
    box-shadow: none;
    outline: none;
}

.bgtransparent {
    background-color: transparent;
    border: none;
}

#notification {
    position: fixed;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4caf50;
    color: white;
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
    display: none;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    max-height: 200px;
    overflow-y: auto;
}

.autocomplete-items li {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}

.autocomplete-items li:hover {
    background-color: #e9e9e9;
}

.autocomplete-items .no-user {
    color: #999;
    cursor: default;
}

table td {
    vertical-align: middle;
}

table tr {
    height: 65px;
}

.table-checkbox{
    height: 20px;
    width: 20px;
    border-radius: 15px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

input:where(.swal2-input), select:where(.swal2-select){
    margin: 1em 0 3px !important;
}

button.resend-mail-contributor, button.modify-contributor {
    margin:3px;
}


table#dicoms {
    transition: margin-bottom 0.3s ease-in-out;
}
