/********************************************************|DEFAULT TAGS********************************************************/
* {
	outline: none;
	box-sizing: border-box;
    font-family: var(--font-condensed-light);
}
body {
	/*background-color: #3c3c3c !important;*/
    overflow: hidden;
}
iframe {
	position: absolute;
    left: 0;
    top: 50px;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    padding-bottom: 50px;
    opacity: 0.9;
}
/*****************************************************************************************************************************/
/******************************************************|GENERAL CONTROLS******************************************************/
.techc-hand {
    cursor: pointer;
}
.techc-auto {
    cursor: auto;
}
.tech-modal-opacity {
    opacity: 0.9 !important;
}
.techc-display-contents {
    display: contents !important;
}
.techc-border-radius-50 {
    border-radius: 50% !important;
}
/*****************************************************************************************************************************/
/********************************************************BACK CONTROLS********************************************************/
.techc-background {
    position: fixed;
    z-index: -1;
    object-fit: fill;
    width: 100%;
    height: 100%;
    top: 0;

    /*background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    /*width: 100%;*/
    /*min-height: 100vh;
    position: fixed;*/
}
.techc-only-space {
    height: 2rem;
}
/*****************************************************************************************************************************/
/*******************************************************|FRONT CONTROLS*******************************************************/
.techc-card-principal {
	border: 2px var(--fifa-gold) solid !important;
	color: var(--bs-dark-text-emphasis) !important;	
}
.card {
    position: absolute;
    bottom: 2px;    
    top: 2px;
    left: 2px;
    right: 2px;
}
.card-body {
    overflow-y: auto;
    overflow-x: auto;
    white-space: nowrap;
}
/*****************************************************************************************************************************/
/**********************************************************ALIGNMENT**********************************************************/
.techc-alignment-center {
	align-items: center;
    display: flex;
    justify-content: center;
}
/*****************************************************************************************************************************/
/***********************************************************MARGINS***********************************************************/
.techc-padding-5 {
    padding: 5px !important;
}
/*****************************************************************************************************************************/
/*********************************************************|SCROLL BAR*********************************************************/
::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    background-color: var(--fifa-gold);
}
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--fifa-gold);
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    background-color: #CCCCCC;
    cursor: pointer;
}
/*****************************************************************************************************************************/
/***********************************************************|COLORS***********************************************************/
.techc-bs-body-color {
	background: var(--bs-body-color) !important;
}
.techc-bs-dark-text-emphasis{
    background: var(--bs-dark-text-emphasis) !important;
}
.techc-principal-color {
    color: var(--fifa-gold);
}
.techc-bg-color {
    background-color:  var(--fifa-gold) !important;
}
.techc-border-color {
    opacity: 1;
    border-color: var(--fifa-gold) !important;
}
/*****************************************************************************************************************************/
/***********************************************************|IMAGES***********************************************************/
.img-thumbnail {
    padding: 0 !important;
    border: none !important;
    max-width: 3.5rem !important;
    height: 2.5rem !important;
    width: 100% !important;    
}
.techc-img-user-change {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}
/*****************************************************************************************************************************/
/*******************************************************|MEDIA QUERY´S********************************************************/
@media (max-width: 576px) {
    iframe {
		position: absolute;
	    left: 0;
	    top: 50px;
	    width: 100%;
	    height: 99.8%;
	    overflow-x: hidden;
	    overflow-y: auto;
	}
    .img-thumbnail {
        padding: 0 !important;
        border: none !important;
        max-width: 3rem !important;
        height: 2rem !important;        
    }
    .techc-background {        
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;        
        min-height: 100vh;
        position: fixed;
        width: auto;
    }
}
@media (min-width: 577px) and (max-width: 767px) {
    iframe {
        position: absolute;
        left: 0;
        top: 50px;
        width: 100%;
        height: 99.8%;
        overflow-x: hidden;
        overflow-y: auto;
    }
    .img-thumbnail {
        padding: 0 !important;
        border: none !important;
        max-width: 3rem !important;
        height: 2rem !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {

}
@media (min-width: 992px) and (max-width: 1199px) {
	.techc-font-name-team {
        font-family: "limelight";
        font-size: 18px;
    }
}
@media (min-width: 1200px) and (max-width: 1399px) {

}
@media (min-width: 1400px) {
    ::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }
}
/*****************************************************************************************************************************/