html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Oswald', sans-serif;
}

iframe {
    display: block;
    border: 0;
    width: 100%;
    height: 100%;
}

.app {
    display: flex;
    width: 100%;
    height: 100%;
}

#api-frame {
    flex: 1 1 auto;
}

h1{
  line-height: 35px;
  margin: 0 0 5px 0;
}

.options {
    background-color: #111111;
    box-sizing: border-box;
    flex: 0 0 322px;
    padding: 30px;
    overflow: auto;
    color: #f2f2f2;
}
/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #f76d3c;
  border-radius: 5px;
}

.option {
    /*display: flex;
    padding: 16px 0;
    border-bottom: 1px solid #ccc;*/
}

.option:first-child {
    /*border-top: 1px solid #ccc;*/
}

.option label {
    flex: 0 0 130px;
    font-size: 17px;
    margin-bottom: 20px;
}

.option .texture {
    font-size: 18px;
    cursor: pointer;
}

.option__control {
    margin-top: 10px;
}

.logos{
  width: 150px;
  margin-bottom: 10px;
}

.color {
    display: flex;
    align-items: center;
    padding: 4px 0;
}

.color input[type='radio'] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.color__swatch {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.5);
    margin-right: 4px;
}

.color input:checked + .color__swatch {
    box-shadow: 0 0 0 2px #f76d3c;
}

.color:hover .color__swatch {
    box-shadow: 0 0 0 2px #f76d3c;
}

.texture {
    display: block;
    position: relative;
    margin-bottom: 10px;
}

.texture input[type='radio'] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.texture__preview {
    display: block;
    height: 100px;
    margin-bottom: 60px;
}

.texture__preview  img {
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    clip: rect(50px,242px,160px,0px);
}

.texture:hover .texture__name{
  color: #f76d3c;
}

.texture input:checked ~ .texture__name {
  color: #f76d3c;
}

.texture:hover .texture__preview img{
  border: 3px solid #f76d3c;
  filter: saturate(100%);
}

 .texture__preview img{
    transition: 0.7s;
     border: 0px solid #f76d3c;
     filter: saturate(20%);
 }

.texture input:checked + .texture__preview > img {
    border: 3px solid #f76d3c;
    filter: saturate(100%);
}

.texture__name {
    display: block;
    margin-top: 4px;
    position: absolute;
    margin-top: -138px;
    margin-left: 0px;
    transition: 0.5s;
    font-family: 'Open Sans Condensed', sans-serif;
}
