﻿.row-content {
    margin-top: 66px;
}

.inner-content {
    width: calc(100% - 350px);
    float: right;
}

.breadcrumb {
    background: white !important;
}

.required-field-tag {
    position: absolute;
    font-size: 11px;
    font-weight: bold;
    color: goldenrod;
}

.input-border-error {
    border-color: gold;
}

.text-left {
    text-align: left;
}

.bottom-space{
   margin-bottom: 160px;
}

.loading-state {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    /*width: 120px;
    height: 120px;*/
    animation: spin 2s linear infinite;
    margin:auto;
    position:absolute;
    left:0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*Responsive*/

@media screen and (max-width:991px) {
    .inner-content {
        width: calc(100% - 70px);
        float: right;
    }
}
