/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Jul 29, 2020, 10:28:08 AM
    Author     : binary
*/



/********************************
        POPUP BOX
********************************/

#ar-popup-panel
{
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 100;
    /*opacity: 0.4;*/
    display: none;
}

#ar-popup-box
{
    
    background: rgba(255, 255, 255, 1);
    z-index: 110;
    width: 400px;
    margin: 100px auto;
    min-height: 300px;
    /*opacity: 1;*/
}

#ar-top-bar
{
    position: inherit;
    width: 99%;
    height: 30px;
    float: lef;
    
    border: solid 1px #ccc;
}


#ar-top-bar span
{
    position: inherit;
    float: right;
    margin: 5px;
    cursor: pointer;
}

#ar-content-panel
{
    position: inherit;
    width: 98%;
    height: 230px;
    float: lef;
    padding: 3px;
    border: solid 1px #ccc;
}


#ar-bottom-bar
{
    position: inherit;
    width: 99%;
    height: 30px;
    float: lef;
    
    border: solid 1px #ccc;
}

/********************************
        END POPUP BOX
********************************/




/*******
 SPINNER
*******/


/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */

.chromeframe {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

#loader-wrapper {
    position: inherit;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3498db;

    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
          animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #e74c3c;

        -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
          animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #f9c922;

        -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
          animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    @-webkit-keyframes spin {
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }
    @keyframes spin {
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }


/*******
 SPINNER
*******/

/*
dataTable
*/
.dataTable {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

.dataTable td, .dataTable th {
  border: 1px solid #ddd;
  padding: 8px;
}

.dataTable tr:nth-child(even){background-color: #f2f2f2;}

.dataTable tr:hover {background-color: #ddd;}

.dataTable th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #4CAF50;
  color: white;
}
/*
End of dataTable
*/

h3 {
    margin: 3px 0px;
    color: #FFFFFF;
    font-size: 20px;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
}


/**
    INPUT
*/

.tsform
{
    margin: 10px 0px;
    padding: 5px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    background-color: #ccc;
    border-radius: 5px;
}

.tsform table
{
    width: 100%;
    box-sizing: border-box;
    border-collapse: collapse;
}

.tsform td, .tsform th {
  border: 1px solid #ddd;
  padding: 3px;
  border-radius: 5px;
}

.tsform input
{
    width: 150px;
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
    font-size: 15px;
}

/**
    INPUT
*/
