@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

*{
    margin: 0;
    padding: 0;
} 
body {
    font-family: 'Titillium Web', sans-serif;
    height: 100%;
    
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: auto;
}

.btn-outline-success {
    color: #E01D78;
    border-color: #E01D78;
}

.btn-outline-success:hover, .btn-outline-success:focus, .btn-outline-success:active {
    color: #ffffff;
    border-color: #B31760;
    background-color: #E01D78;
    outline: none !important;
}

.btn-success {
    background-color: #E01D78;
    border-color: #E01D78;
}

.btn-success:hover, .btn-success:focus, .btn-success:active {
    background-color: #B31760;
    border-color: #B31760;
    outline: none !important;
}

.btn-success:disabled {
    background-color: #F08EBC;
    border-color: #F08EBC;
    outline: none !important;
}

.bg-color {
    background-color: #0A1018;
}

#brand {
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
}

#under-nav {
    position: absolute;
    min-height: 100%;
    width: 100%;
    display: flex;
}

.navbar-brand {
    margin-right: 0px;
}

#side {
position: fixed;
    width: 200px;
    height: 100vh;
}

#main {
    margin-left: 200px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    min-height: 100vh;
    width: 100%;
    max-width: calc(100vw - 200px);
    padding-bottom: 100px;
}

.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: auto;
}

.menu > li a {
    display: block;
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
    color: #ffffff;
}

.menu > li a.active {
    background-color: #E01D78;
    color: white;
}
  
.menu > li a:hover:not(.active) {
    background-color: #555;
    color: white;
}

#list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
#merchant-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
}

#merchant-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
}

#user-name {
    padding-right: 15px;
    padding-left: 15px;
    font-size: 1.1rem;
    color: #ffffff;
}

.dynamic-amounttierformset {
    align-items: flex-start;
}

.dynamic-termtierformset {
    align-items: flex-start;
}

.buttom_buttons {
    margin-top: 50px;
    display: flex;
    justify-content:space-between;
}
.zirp-field {
    flex-grow: 3;
    flex-shrink: 0;
    flex-basis: 0;
}
.delete-row {
    background-color: rgb(252, 87, 87);
    color: white;
    padding: 0.5em 0.5em 0.5em 0.5em;
    text-decoration: none;
    text-transform: uppercase;
    width: 20px;
    flex-grow: 0.1;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    margin-top: 23px;
}

.delete-row:hover {
    background-color: rgb(165, 59, 59);
    color: white;
}

.data-table {
    display: none;
}
#data, #calculate {
    display: none;
    margin-left: 40px;
    margin-top: 25px;
}
#calc-table {
    display: table;
}

.price_plans_div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.about_div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.form-page {
    margin-top: 25px;
}
#email {
    margin-top: 25px;
}

.table-nonfluid {
    width: 50%;
 }

 .popover {
     max-width: 1000px;
 }
 .popover-header {
    font-size: 1rem;
}

.popover-body {
    font-size: 1rem;
}

#invoice-rows-form {
    width: 95%;
}

.error-text{
    color: #F93154;
}

.form-space {
    margin-top: 15px;
}

.right{
    text-align: right;
  }

.is-invalid > .invalid-feedback {
    display: block;
}

.flex-box{
    display: flex;
}

/* Start by setting display:none to make this hidden.
   Then we position it in relation to the viewport window
   with position:fixed. Width, height, top and left speak
   for themselves. Background we set to 80% white with
   our animation centered, and no-repeating */
.loading-modal {
    display:    none;
    position:   fixed;
    z-index:    1000;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba( 255, 255, 255, .8 ) 
                url('http://i.stack.imgur.com/FhHRx.gif') 
                50% 50% 
                no-repeat;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading .loading-modal {
    overflow: hidden;   
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading .loading-modal {
    display: block;
}

#env-name {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 100%;
    font-size: 36px;
    color: #ffffff;
    padding: 5px 10px;
    background-color: #E01D78;
}

.spinner {
    display: none;
}

.loading .spinner {
    display: inline-block !important;
}