/*
    Variables - tealtest2

  Gold in logo: #9a7611
  Darker gold for sidebar: #1e1703
  Almost as dark for sidebar lines: #302505
  Light gold for text: #e9ba38
  Very light gold for background: #f3d990

*/

.testshape {
    --roof-one: linear-gradient(15deg,#9c7842 12%,transparent 12.5%) 50px -10px / 380px 30px;
    --roof-two: linear-gradient(-15deg,#429c4a 12%,transparent 12.5%) -330px -10px / 380px 30px;
    --window-one: linear-gradient(#fff, #fff) 20px 40px / 10px 10px;
    --window-two: linear-gradient(#fff, #fff) 70px 40px / 10px 10px;
    --house-door:  linear-gradient(#635327, #635327) 40px 40px / 20px 30px;
    --house-front: linear-gradient(#cc943f,#cc943f) 0px 20px / 100px 50px;
    width: 100px;
    height: 70px;
    background:
      var(--window-one),
      var(--window-two),
      var(--roof-one),
      var(--roof-two),
      var(--house-door),
      var(--house-front);
    background-repeat: no-repeat;
}


body {
  font-family: 'Poppins', sans-serif;
  background: black;
}

/* p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1em;
  font-weight: 300;
  line-height: 1.7em;
  color: #999;
} */

a,
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.navbar {
  padding: 15px 10px;
  background-color: #1e1703;
  border: none;
  border-radius: 3px;
  margin-bottom: 10px;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none !important;
  border: none;
}

.btn-info {
  color: #fff;
  background-color: #1e1703;
  border-color: #999999;
}

.spinner{
  position: absolute;
  height: 100px;
  width: 100px;
  top: 50%;
  left: 50%;
  margin-left: -50px;
  margin-top: -50px;
  background: url(/live/code/img/spinner3.gif);
  background-size: 100%;
}

#pageheadertext {
  color: #9a7611;
  font-size: 2em;
  margin-left: 50px;
}

.deepgoldheadertext {
  color: #9a7611;
}

.mainpage {
  background-color: #f3d990;
  border-radius: 5px;
  margin-left: 12px;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

input:invalid {
  background-color: #FF9999;
  border: none;
  outline: 2px solid red;
  /* border-radius: 5px; */
}




/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

#sidebar {
  min-width: 250px;
  max-width: 250px;
  background: #1e1703;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#sidebar.active {
  margin-left: -250px;
}

#sidebar .sidebar-header {
  background: black;
  text-align: center;
  padding: 5px 0px;
}

#sidebar ul.components {
  padding: 4px 0;
  border-bottom: 1px solid #302505;
}

#sidebar ul p {
  color: #666666;
  padding: 10px;
}

#sidebar ul li a {
  padding: 10px;
  font-size: 1.1em;
  display: block;
}

#sidebar ul li a:hover {
  color: #9a7611;
  background: #302505;
}

#sidebar ul li.active > a,
a[aria-expanded="true"] {
  color: #fff;
  background: #666666;
}

a[data-toggle="collapse"] {
  position: relative;
}

.dropdown-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

ul ul a {
  font-size: 0.9em !important;
  padding-left: 30px !important;
  background: #666666;
}

ul.CTAs {
  padding: 20px;
}

ul.CTAs a {
  text-align: center;
  font-size: 0.9em !important;
  display: block;
  border-radius: 5px;
  margin-bottom: 5px;
}

a.download {
  background: #fff;
  color: green;
}

a.article,
a.article:hover {
  background: #666666 !important;
  color: #fff !important;
}

/* #sidebarright {
  background: #1e1703;
} */

.shadedmid {
  background: #1e1703;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
#content {
  width: 100%;
  padding: 20px;
  min-height: 100vh;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
@media (max-width: 768px) {
  #sidebar {
    margin-left: -250px;
  }
  #sidebar.active {
    margin-left: 0;
  }
  #sidebarCollapse span {
    display: none;
  }
}

.maincard {  
  background-color: #e9ba38;
  border-color: #1e1703;
  border-radius: 10px;
  padding: 10px;
}

.sqbg {
  background-image: url('img/transp2a.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 200px 80px;
}


/* ************************************************ 
************ Buttons
************************************************ 

  Gold in logo: #9a7611
  Darker gold for sidebar: #1e1703
  Light gold for text: #e9ba38
  Very light gold for background: #f3d990 
  
*/


.btn-displayblock {  
  color: #1e1703;
  background-color: #9a7611;
  border-color: #1e1703;
  font-size: 0.8rem;
  padding-top: 2px;
  padding-bottom: 2px;
  margin: 3px;
}

.btn-displayblock:hover, .btn-displayblock:focus, .btn-displayblock:active, .btn-displayblock.active, .open > .dropdown-toggle.btn-displayblock {
  background-color: #e9ba38;
  color: #1e1703;
  border-color: #1e1703;
}

.btn-displayblock.active {
  color: #e9ba38;
  background-color: #1e1703;
  border-color: #e9ba38;
}

.btn-displayblock.focus, .btn-displayblock:focus {
  outline: 0;
  box-shadow: 0 0 0 0.1rem #BBBBBB;
}



.btn-function {  
  color: #e9ba38;
  background-color: #666666;
  border-color: #AAAAAA;
  font-size: 0.8rem;
  padding-top: 2px;
  padding-bottom: 2px;
  margin: 3px;
}

.btn-function:hover, .btn-function:focus, .btn-function:active, .btn-function.active, .open > .dropdown-toggle.btn-function {
  background: #999999;
  color: #FFFFFF;
}

.btn-transparent {
  color: #9a7611;
  border-color: #302505;
  font-size: 0.8rem;
  padding-top: 2px;
  padding-bottom: 2px;
  margin: 3px;

}
.btn-icononly {
  color: #9a7611;
  font-size: 0.8rem;
  padding-top: 2px;
  padding-bottom: 2px;
  margin: 3px;
}


.btn-filter {
  color: #666;
  background-color: #dbf3dc;
  border-color:#666;
  font-size: 0.8rem;
  padding-top: 2px;
  padding-bottom: 2px;
}

.btn-filter.active {
  color: #9a7611;
  background-color: #AAAAAA;
  border-color: #1e1703;
}

.btn-filter.focus, .btn-filter:focus {
  outline: 0;
  box-shadow: 0 0 0 0.1rem #0cf4fc;
}

.btn-command {
  color: #ffffff;
  background-color: #222222;
  border-color:#BBBBBB;
  font-size: 0.8rem;
  padding-top: 2px;
  padding-bottom: 2px;
}

.btn-command:hover {
  color: #BBBBBB;
}

.redgreentextbutton {
  color: #AA0000;
}
.redgreentextbutton.active {
  color: green;
}
.redgreentextbutton.disabled {
  color: #666666;
}

/* Buttons and teams rows */

.nopadding {
  padding: 0px;
}

.selteamelement {
  border-radius:6px;
}

.buttonsrow{
  border-radius:6px;
  /* opacity: 0.5; */
  background-color: #1e1703;
  border-color: #AAA;
  border-width: 1px;
  border-style: solid;
  /* margin: 1px; */
}

.selbuttonsbutton{
  padding:6px;
  margin:4px;
  text-transform: uppercase;
  font-size:12px;
  font-weight: bold;
}

.selmanuallabel{
  padding: 5px 5px;
  margin:4px;
  color: #cdf7f7;
  background-color: #1e1703;
  text-transform: uppercase;
  border-radius:6px;
  font-size:12px;
  font-weight: bold;
  line-height: 110%;
  text-align: center;
}
.selbuttonsrowtext {
  padding: 5px 0px;
  margin:4px;
  color: #cdf7f7;
  background-color: #1e1703;
  text-transform: uppercase;
  border-radius:6px;
  font-size:12px;
  font-weight: bold;
  line-height: 110%;
  text-align: center;
}

/* Boxes containing players  */
.selteambox {
  border-radius: 15px;
  background-color:#CCC;
  font-size: 12px;
  padding: 3px;
  margin-top: 5px;
  margin-bottom: 5px;
  text-align: center;
}

.selteamplayer {
  border-radius: 5px;
  background-color:#AAA;
  font-size: 12px;
  padding: 2px;
  margin-top: 1px;
  margin-bottom: 1px;
  line-height: 200%;
  text-align: center;
}
.selteamplayerdiff {
  background-color:#C99;
  color: #000;
}

.selteamboxhdr {
  color:#1e1703;
  font-size:12px;
  margin-top:3px;
  text-align: center;
  font-weight: bold; 
}

.selemailmodalheader, .selemailclose {
  background-color: #1e1703;
  color:white !important;
  text-align: center;
  font-size: 30px;
}
.selemailmodalfooter {
  background-color: #f9f9f9;
}
.selemailmodaltextarea {
  font-size:10px;
}

.tabletopborder { border-top:1px solid #1e1703}
.tablebottomborder { border-bottom:1px solid #1e1703}

.ql-whitebg .ql-editor {
  background-color: white;
}

.text-bg-sitemedium {
    color: #fff;
    background-color: #9a7611;
}

.text-bg-sitelight {
    color: #1e1703;
    background-color: #e9ba38;
}



/*# sourceMappingURL=t1.css.map */