/* Fancy hover effects for channel view */
::-webkit-calendar-picker-indicator {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="15" viewBox="0 0 24 24"><path fill="gold" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>');
}


* {
	box-sizing: border-box;
}

@property --angle {
  syntax: '<angle>';
  initial-value: 90deg;
  inherits: true;
}

@property --gradX {
  syntax: '<percentage>';
  initial-value: 50%;
  inherits: true;
}

@property --gradY {
  syntax: '<percentage>';
  initial-value: 0%;
  inherits: true;
}

:root {
	--d: 2500ms;
	--angle: 90deg;
	--gradX: 120%;
	--gradY: 50%;
	--c1: gold;
	--c2: black;
}

.sqrtchbox {
	border: 0.35rem solid;
	background: #222222;
	border-image: conic-gradient(from var(--angle), var(--c2), var(--c1) 0.1turn, var(--c1) 0.15turn, var(--c2) 0.25turn) 30;
	animation: borderRotate var(--d) linear infinite forwards;
}


@keyframes borderRotate {
	100% {
		--angle: 420deg;
	}
}

@keyframes borderRadial {
	20% {
		--gradX: 100%;
		--gradY: 50%;
	}
	40% {
		--gradX: 100%;
		--gradY: 100%;
	}
	60% {
		--gradX: 50%;
		--gradY: 100%;
	}
	80% {
		--gradX: 0%;
		--gradY: 50%;
	}
	100% {
		--gradX: 50%;
		--gradY: 0%;
	}
}

/* sqrt animation ^ */


select>option {
    background-color: #4c4c4c;
}
 
/* Style the dropdown items on hover */
select>option:hover {
    background-color: gold;
    color: black;
}

/* Style the dropdown items on hover */
select>option:checked {
    background-color: gold;
    color: black;
}


.grid figure {
	position: relative;
	overflow: hidden;
	margin: 10px 1%;
	background: rgb(255, 215, 0);
	text-align: center;
	cursor: pointer;
}

.grid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 0.8;
}

.grid figure figcaption {
	color: rgb(255, 255, 255);
	text-shadow: 0 0 10px rgb(0, 0, 0), 0 0 10px rgb(0, 0, 0);
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.grid figure h2 {
	word-spacing: -0.15em;
	font-weight: 300;
	font-size: 30px;
}

.grid figure h2 span {
	font-weight: 800;
}

.grid figure h2,
.grid figure p {
	margin: 0;
}

.grid figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}

/*---------------*/
/***** Sarah *****/
/*---------------*/

figure.effect-sarah {
	background: rgb(0, 0, 0);
}

figure.effect-sarah img {
	max-width: none;
	width: -webkit-calc(100% + 20px);
	width: calc(100% + 20px);
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-10px, 0, 0);
	transform: translate3d(-10px, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

figure.effect-sarah:hover img {
	opacity: 0.4;
	/*-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);*/
}

figure.effect-sarah figcaption {
	text-align: left;
}

figure.effect-sarah h2 {
	position: relative;
	overflow: hidden;
	padding: 20px 25px 15px 25px;
        color: rgb(255,215,0);
}

figure.effect-sarah h2::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: rgb(255, 215, 0);
	content: '';
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

figure.effect-sarah:hover h2::after {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

figure.effect-sarah p {
	padding: 10px 25px;
	opacity: 0;
        color: rgb(255,215,0); 
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
}

figure.effect-sarah:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

figure.effect-sarah label {
	position: absolute;
	right: 55px;
	bottom: 10px;
	padding: 2px;
	height: 30px;
	opacity: 0;
	text-shadow: none;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
}

figure.effect-sarah label i {
	position: relative;
	left: 80%;
}

figure.effect-sarah label span {
	position: relative;
	left: 80%;
	top: -5px;
}

figure.effect-sarah:hover label {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.video-container {
	width: 80%;
	height: 100%;
}

.chat-container {
	margin: 0;
	width: 20%;
	height: 100%;
}

.stream-container {
	display: flex;
	flex-direction: row;
}

.full-width {
	width: 100%;
}

.full-height {
	height: 100%;
}

.fill {
	height: 100%;
	width: 100%;
}

.fill-popout {
	width: 100%;
	height: calc(100vh - 56px);
}

.chatBorder {
	border: rgb(254, 223, 26) 1px solid;
	width: 96%;
	margin: auto;
}

.mdl-content__full-height {
	width: 100%;
	height: calc(100vh - 56px);
}

.mdl-content__settings {
	width: 100%;
}

.mdl-typography--text-nowrap-ellipsis {
	white-space: nowrap;
	overflow-x: hidden;
	text-overflow: ellipsis;
	padding-right: 10px !important;
	width: 224px;
}

.live-player {
	width: 100%;
	height: 100%;
	position: relative;
	margin: 0 auto;
}

.dm-logo-header {
	background-image: url("../img/logo.png") !important;
	color: rgb(256, 223, 26) !important;
	text-shadow: 2px 2px 2px rgb(0, 0, 0) !important;
	letter-spacing: 7px !important;
	font-size: 13px !important;
	text-align: right !important;
	line-height: 90px !important;
}

.forgot-pass {
	padding-top: 10px;
}

.force_link {
	cursor: pointer;
}

.sendemoji {
        color: rgb(255, 215, 0);
        position: absolute;
        top: 20px;
        right: 35px;

}
.sendbutton {
	color: rgb(255, 215, 0);
	position: absolute;
	top: 20px;
	right: 10px;
}

.sendbuttonicon {
	font-size: 0.75em;
}

.chatbox {
	padding: 0 45px 0 20px;
	width: 100%;
}

.chatbox .mdl-textfield {
	width: 85%;
}

#output a {
	color: rgb(234, 215, 109);
	font-size: 14px;
	text-decoration: none;
}

.keyCopy-toast {
	border-radius: 3px;
}

.keyCopy-text {
	margin: auto;
	color: rgb(256, 223, 26);
}

.keyCopy-action {
	padding: 5px;
}

/* Rules for sizing material icons */
.material-icons.md-16 {
	font-size: 16px;
}

.material-icons.md-18 {
	font-size: 18px;
}

.material-icons.md-24 {
	font-size: 24px;
}

.material-icons.md-36 {
	font-size: 36px;
}

.material-icons.md-48 {
	font-size: 48px;
}

.copyIcon {
	vertical-align: middle;
	margin-left: auto;
}

.card {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 250px;
  height: 350px;
  border-radius: 10px;
  box-shadow: 5px 10px 10px 2px rgba(0, 0, 0, 0.5);
  background: #151515;
  overflow: hidden;
  .ds-top {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    left: 0;
    width: 300px;
    height: 25%;
    background: gold;
    animation: dsTop 1.5s;
  }
  .avatar-holder {
    position: absolute;
    margin: auto;
    top: 10%;
    right: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0 0 0 5px #151515,
                inset 0 0 0 5px #000000,
                inset 0 0 0 5px #000000,
                inset 0 0 0 5px #000000,
                inset 0 0 0 5px #000000,;
    background: white;
    animation: mvTop 1.5s;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  .name {
    position: absolute;
    margin: auto;
    top: -10%;
    right: 0;
    bottom: 0;
    left: 0;
    width: inherit;
    height: 13%;
    text-align: center;
    animation: fadeIn 2s ease-in;
    a {
      color: white;
      text-decoration: none;
      font-weight: 700;
      font-size: 18px;
        &:hover {
          text-decoration: underline;
          color: gold;
      }
    }
    h6 {
      position: absolute;
      margin: auto;
      left: 0;
      right: 0;
      bottom: 0;
      color: white;
      width: 40px;
    }
  }
  .button {
    position: absolute;
    margin: auto;
    padding: 8px;
    top: 10%;
    right: 0;
    bottom: 0;
    left: 0;
    width: inherit;
    height: 10%;
    text-align: center;
    animation: fadeIn 2s ease-in;
    outline: none;
    a {
      padding: 5px 20px;
      border-radius: 10px;
      letter-spacing: 0.05em;
	  background-color: white;;
      text-decoration: none;
      font-size: 10px;
      transition: all 1s;
      &:hover {
        color: black;
        background: gold;
      }
    }
  }
  .ds-info {
    position: absolute;
    margin: auto;
    top: 30%;
    bottom: 0;
    right: 0;
    left: 0;
    width: inherit;
    height: 10%;
    display: flex;
    .pens, .projects, .posts {
      position: relative;
      left: -300px;
      width: calc(250px / 3);
      text-align: center;
      color: white;
      animation: fadeInMove 2s;
      animation-fill-mode: forwards;
      h6 {
        text-transform: uppercase;
        color: gold;
      }
      p {
        font-size: 12px;
      }
    }
    .ds {
      &:nth-of-type(2) {
        animation-delay: .5s;
      }
      &:nth-of-type(1) {
        animation-delay: 1s;
      }
    }
  }

  
  .ds-skill {
    position: absolute;
    margin: auto;
    bottom: -10%;
    right: 0;
    left: 0;
    width: 200px;
    height: 30%;
    animation: mvBottom 1.5s;
    h6 {
      margin-bottom: 5px;
      font-weight: 700;
      text-transform: uppercase;
      color: gold;
    }
    .skill {
      h6 { 
        font-weight: 400;
        font-size: 8px;
        letter-spacing: 0.05em;
        margin: 4px 0;
        color: white;
      }
      .fab {
        color: gold;
        font-size: 14px;
      }
      .bar {
        height: 5px;
        background: gold;
        text-align: right;
        p {
          color: white;
          font-size: 8px;
          padding-top: 5px;
          animation: fadeIn 5s;
        }
        &:hover {
          background: white;
        }
      }
      .bar-html {
        width: 95%;
        animation: htmlSkill 1s;
        animation-delay: .4s;
      }
      .bar-css {
        width: 90%;
        animation: cssSkill 2s;
        animation-delay: .4s;
      }
      .bar-js {
        width: 75%;
        animation: jsSkill 3s;
        animation-delay: .4s;
      }
    }
  }
}

@keyframes fadeInMove {
  0% {
    opacity: 0;
    left: -300px;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes htmlSkill {
  0% {width: 0;}
  100% {width: 95%;}
}

@keyframes cssSkill {
  0% {width: 0;}
  100% {width: 90%;}
}

@keyframes jsSkill {
  0% {width: 0;}
  100% {width: 75%;}
}

@keyframes mvBottom {
  0% {bottom: -150px;}
  100% {bottom: 10px;}
}
@keyframes mvroles {
  0% {bottom: -150px;}
  100% {bottom: 10px;}
}
@keyframes mvTop {
  0% {top: -150px;}
  100% {top: 40px;}
}

@keyframes dsTop {
  0% {top: -150px;}
  100% {top: 0;}
}

.following {
  color: black;
  background: gold;
}

.ds-role {
  position: absolute;
  margin: auto;
  bottom: 15%;
  right: 0;
  left: 0;
  width: 200px;
  height: 10%;
  text-align: center;
  color: white;
  animation: fadeInMove 2s;
}

.ds-role h6 {
  margin-bottom: 5px;
  font-weight: 700;
  text-transform: uppercase;
  color: gold;
  font-size: 10px;
}

.ds-role p {
  font-size: 12px;
  animation: fadeIn 2s ease-in;
}
