.content{
    padding: 10px;
}

.with_line::before,
.with_line::after {
    display: inline-block;
    content: "";
    border-top: 2px solid #ccc;
    width: 40%;
    margin: 0px 10px;
    transform: translateY(-4px);
}

.with_line{
    font-size: 12px;
    color: #ccc;
    font-weight: bold;
    margin-top: 8px;
}

.self-start{
    align-self: flex-start;
}

.pointer{
    cursor: pointer;
}

.keywords_table{
    word-break: break-all;
}

.remove_source_override_word{
    color: red;
    font-size: 16px;
    margin-left: 10px;
    cursor: pointer;
}

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

.source_words_box{
    column-gap: 10px;
    row-gap: 10px;
    flex-wrap: wrap;
}

.single_source_word{
    align-self: baseline;
    background: #feffa7;
    padding: 0px 10px;
    border-radius: 7px;
}

.override_dest_word{
    background: palegreen;
    padding: 0px 10px;
    border-radius: 7px;
    align-self: baseline;
}

.pulseServer {
    height: 42px;
    -moz-animation: pulse 2s infinite;
    -webkit-animation: pulse 2s infinite;
}

.hint{
    border-bottom: dashed 1px #727271;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 lightcoral;
    }
    70% {
        box-shadow: 0 0 0 10px rgba(88, 120, 243, 0);
    }
    100% {
        box-shadow: 0 0 0 50px rgba(88, 120, 243, 0);
    }
}

.pr_st{
    font-size: 25px;
}

.proxy-spinner{
    width: 24px;
    height: 24px;
}

.logout-btn{
    position: absolute;
    top: 10px;
    right: 10px;
}

.domains_container .single_domain:first-child .removeNewProjectDomain{
    display: none;
}

.project_table{
    overflow: auto;
}

.project_table .date{

}
.loader_container{
    display: flex;
    justify-content: space-around;
    height: 60vh;
    align-items: center;
    position: absolute;
    top: 0;
    width: 100%;
}
.loader {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color: #ccc #ccc transparent transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
.loader::after,
.loader::before {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent transparent #FF3D00 #FF3D00;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
}
.loader::before {
    width: 64px;
    height: 64px;
    border-color: #ccc #ccc transparent transparent;
    animation: rotation 1.5s linear infinite;
}
    
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 
@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

.stat_caret{
    position: absolute;
    top: -8px;
    right: 0px;
    font-size: 12px;
}


.proj_stat_filter{
    background: #fff;
    border: 1px solid #BBB;
    padding: 8px 15px;
    min-width: 140px;
    cursor: pointer;
}

.proj_stat_filter .value{
    font-weight: bold;
}

.positions_change_filter i{
    font-size: 14px;
}

.proj_stat_filter:hover, .proj_stat_filter.selected{
    border: 1px solid #222;
}

.opacity_03{
    opacity: 0.3;
}

.t-20{
    background-color: #beeed3 !important;
}

.t-10{
    background-color: #b4d9f1 !important;
}


.projectTable .itm{
    position: relative;
}

.projectTable .box{
    padding-top: 0.5rem!important;
    padding-bottom: 0.5rem!important;
    text-align: center!important;
    justify-content: space-around!important;
}

.projectTable .box > div{
    position: relative;
    width: 55px;
}

.projectTable .box a{
    cursor: pointer;
    text-decoration: none;
    color: #222;
}

.projectTable .srpLog{
    position: absolute;
    bottom: 3px;
    right: 3px;
}

.colSorter{
    cursor: pointer;
}

.nav-link{
    border-radius: 10px;
}

.navbar-nav .nav-link.active {
    background: #343a40;
    color: white ;
    border-radius: 10px;
}

.navbar-nav .nav-link:hover:not(.active) {
    background: #e7e7e7;
    border-radius: 10px;
}

.navbar-nav .nav-link.active:hover {
    background: #343a40;
    color: white;
}
