/*** Form Validation ***/
.container {
  max-width: 960px;
}

.lh-condensed { line-height: 1.25; }

/*** Logo ***/
.logo-text{
    display: inline-block;
    vertical-align: middle;
    font-weight: bold;
}
.logo-img{
    display: inline-block; 
    text-align: center;
    vertical-align: middle;
    position: relative;
    margin-left: -35px;
    margin-right: -15px;    
}
.logo-img img{
    background: transparent !important;
    border: none !important;
    max-height: 100px !important;
}

/*** Loading Spinner ***/
.loaderBig {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 5px;
  height: 5px;
  animation: spin 2s linear infinite;
}
.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align:middle;
}    

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*** Registration ***/
.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}
.bg-light-tennis{
    /*background-color: #fffde7;*/
    background-color:#dcfd50;
}
.customForm input, .customForm textarea, .customForm select 
{
    border: 0 !important;
    background: transparent !important;
    border-bottom: 1px solid #ced4da !important;
    outline: 0 !important;
    user-select: none !important;
   /* color: transparent; */           
    overflow: hidden;
    outline: none !important;
    box-shadow:none !important;
}
.customForm input:focus {
    outline: none !important;
}        
.shadow-sm{
    padding:25px !important;
}
.form-control, .custom-select{
    padding:0;
}
.red{color:red;}
.green{color:green;}
.success-text{color:#28a745;}
.warning-text{color:#ffc107;}
.danger-text{color:#dc3545;}
.primary-text{color:#007bff;}
.info-text{color:#17a2b8;}
.gray-text{color:#6c757d;}
.dark-text{color:#343a40;}

.border-top-color {
    border-top:15px solid #dca709 ;
}
.btn-register{
    background-color: #dca709  !important;
    border-color: #dca709  !important;
}
/*** Start DataTables Styles ***/
div.dataTables_wrapper div.dataTables_length label {
    font-weight: normal;
    text-align: left;
    white-space: nowrap;
}
div.dataTables_wrapper div.dataTables_filter input {
    margin-left: 0.5em;
    display: inline-block;
    width: auto;
}
div.dataTables_wrapper div.dataTables_filter {
    text-align: right;
}
/*** End Start DataTables Styles ***/