﻿/*
*  Copyright (C) 2018. Parker Hannifin – Sporlan Division.
*  All rights reserved.
*
*  File Name	:CustomCss.css
*
*  Description	: This file Contains the css class to apply styles.
*
* Author		: 998785
*
* Revision History:
**===========================================================
** REV.NO	 DATE			 BY				        DESCRIPTION
**===========================================================
**
** 2.0		 2018-09-18		Sateesh Myadaram     	Created
**===========================================================
*/

.input-group-addon {
    background-color: #d2d6de;
}

.overlay {
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.8);
    position: fixed;
    z-index: 1200;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.loader {
    border: 16px solid rgba(243,243,243,0.8);
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.popover {
    max-width: 100%;
}

.modal-header-danger {
    color: #fff;
    padding: 9px 15px;
    border-bottom: 1px solid #eee;
    background-color: #d9534f;
    /*-webkit-border-top-left-radius: 5px;
        -webkit-border-top-right-radius: 5px;
        -moz-border-radius-topleft: 5px;
        -moz-border-radius-topright: 5px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;*/
}

.deleteRed{
    background-color:red;
}
.red
{
    color:red;
}

.sticky-bubble {
    position: sticky;
    top: 100px;
    z-index: 999;
    padding: 5px;
    border: 2px solid #f39c12;
    border-radius: 5px;
    background-color: white;
}
