﻿.providerPref-content-bg {
    background: #fff;
    box-shadow: 0px 0 12px #bbbbbb;
    /*width: auto;*/
    display: table;
    padding: 0px 22px 10px;
    margin: auto;
    margin-top: 20px;
}

.providerPref-header {
    display: block;
}

.providerPref-search-fields {
    display: inline-block;
    /*width: 100%;*/
    margin-top: 20px;
}

.providerPrefProviderTokenBox {
    display: inline-block;
    position: relative;
}

.providerPrefBtnRow {
    /*width: fit-content;*/
    display: table;
    margin: auto;
}

.providerPrefBtn,
.providerPrefBtn:focus {
    background-image: linear-gradient(to left, #3f1d69 0%, #0d074d 100%);
    background-color: #1f1545;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    color: #FFFFFF;
    text-align: center;
    text-transform: capitalize;
    outline: none;
    font-size: 14px;
    padding: 5px 15px;
    margin: 10px 5px 10px 5px;
    border: none;
}

.providerPrefBtn:hover {
    background-image: linear-gradient(to left, #7b1f7f 0%, #3b1363 100%);
    color: #FFFFFF;
}

/*************************/

.providerPref-content-edit-header-bg {
    margin: 20px auto;
    display: table;
    /*width: fit-content;*/
    display: none;
}

.providerPref-navBtn {
    background: none;
    border: none;
    outline: none;
    padding-left: 3px;
    padding-right: 3px;
    cursor: pointer;
}

/*************************/
.providerPref-content-edit-bg {
    background: #FFF;
    box-shadow: 0px 0 12px #bbbbbb;
    width: 80%;
    padding: 0px 22px 10px;
    margin-top: 20px;
    margin: 20px auto;
    display: none;
    overflow: auto;
}

.providerPref-edit-contents {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}

.providerPref-edit-table {
    width: 100%;
}

.enableDisableAll {
    padding: 1px 3px 1px 3px;
    border-style: solid;
    background-color: transparent;

}


.providerPref-tabtext {
    color: black;
    font-weight: bold;
}

.providerPref-tabs.active .providerPref-tabtext {
    background-color: #ebebeb !important;
}

/*************************/
.greenText {
    color: #046A38 !important
}

.brickredText, .redText {
    color: #9B2743 !important
}

/*************************/

.togglePreference {
    float: right;
}

#globalLoadingproviderPref {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    margin: 20px auto; 
}

/*************************/


#savedToast {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #1f1545; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 5px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center */
    bottom: 30px; /* 30px from the bottom */
}

#savedToast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;} 
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;} 
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

/************************************/