﻿.margin {
    margin-left: 5px;
    margin-right: 3px;
}

.width {
    width: 120px;
}

.divPadding {
    padding: 10px;
    display: flex;
    justify-content: center;
}

.divAction {
    display: flex;
    align-items: center;
}

.spanTxt {
    display: flex;
    align-items: center;
    margin: auto;
}


.loading {
    font-family: Arial;
    font-size: 10pt;
    border: 5px solid #67CFF5;
    width: 200px;
    height: 100px;
    display: none;
    position: fixed;
    background-color: White;
    z-index: 10; /* keep on top of other elements on the page */
    outline: 9999px solid rgba(0,0,0,0.5);
}

.bgColor {
    margin-bottom: 10px;
    background-color: #FFBFBF;
}

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 10px;
  height: 10px;
  margin-left:40%;
  display: none;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  z-index: 10; /* keep on top of other elements on the page */
  outline: 9999px solid rgba(0,0,0,0.5);
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.loader-wrapper{
	
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    background: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
	
}

.loader-wrapper .loader{
	display: block !important;
	margin:0;
	outline: none;
}
.ImageIconSize
{
	 width: 200px;
    height: 150px;
}


.searchBar {
    display: inline-block;
    position: relative;
    left: 10px;
}

@media (max-width:390px)
{

    .searchBar {
        display: inline-block;
        position: relative;
        left: 0px !important;
        float:right;
    }
}