﻿.loader {
    position: fixed !important;
    left: 45% !important;
    top: 45% !important;
}

.pull-right{
    text-align:right;
}
.no-padding {
    padding: 0 !important;
}

.no-padding-right {
    padding-right: 0 !important;
}

.no-padding-left {
    padding-left: 0 !important;
}

.no-padding-top {
    padding-top: 0 !important;
}

.no-padding-bottom {
    padding-bottom: 0 !important;
}

.no-margin {
    margin: 0 !important;
}

.no-margin-right {
    margin-right: 0 !important;
}

.no-margin-left {
    margin-left: 0 !important;
}

.no-margin-top {
    margin-top: 0 !important;
}

.no-margin-bottom {
    margin-bottom: 0 !important;
}

.d-none {
    display: none !important;
}
/*Google chrome display thick outline from bootstrap css so handle that*/
a:focus {
    outline: none !important;
    box-shadow: none !important;
}

#toast-container > div {
    opacity: 1;
}

/* Prevent transparency issue */
.toast {
    opacity: 1 !important;
}

.divCenter {
    margin: auto;
    width: 100%;
}
/*Batch Edit Grid view button Alignment*/
tbody tr.dxgv td[class^="dxgvCommandColumn"] div {
    float: left !important;
}
tbody tr.dxgv td[class^="dxgvCommandColumn"] .dx-ar div {
    float: left !important;
}

.pr-5 {
    padding-left: 20px !important;
}

#directionSteps {
    clear: both;
    width: 100%;
    margin: 10px 0 0 0;
    font-size: 13px;
    line-height: normal;
}

#directionSteps p {
    font-size: 13px;
    color: #999
}

.drMsg {
    padding-left: 5%;
    padding-right: 5%;
}
.Remove_BlackGlass {
    background: none !important;
    border: none !important;
}

#directionsPanel {
    height: 790px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #999;
    border-left: none;
    border-top: none;
    padding: 10px 15px;
}
.GridViewPagerBottom{
    width:99.4% !important;
}

/*For Theme Preferences Link In Footer*/
.rotating-gradient-link {
    /* 1. Basic link styles */
    text-decoration: none;
    /*font-weight: bold;*/
    display: inline-block; /* Required for consistent background sizing */
    /* 2. Your Gradient Variable */
    --my-gradient: linear-gradient( 90deg, #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000 );
    /* 3. Double Background Setup */
    /* Layer 1: The text fill | Layer 2: The 2px underline */
    background-image: var(--my-gradient), var(--my-gradient);
    background-repeat: no-repeat;
    /* Size first layer for text (100% height), second for underline (2px height) */
    background-size: 400% 100%, 400% 2px;

    /* Position the underline at the bottom */
    background-position: 0% 0%, 0% 100%;
    /* 4. Clip the first layer to text only */
    /* NOTE: The second layer (underline) is preserved by the 'padding-box' clip */
    -webkit-background-clip: text, padding-box;
    background-clip: text, padding-box;
    /* 5. Final transparent color to reveal the text-clipped gradient */
    color: transparent;
    /* 6. Your Animation */
    animation: gradient-animation 6s ease infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%, 0% 100%;
  }
  50% {
    background-position: 100% 50%, 100% 100%;
  }
  100% {
    background-position: 0% 50%, 0% 100%;
  }
}