/**
 * Copyright © 2016 Magento. All rights reserved.
 * See COPYING.txt for license details.
 */
 
 .swatch-input{
	 display: none;
 }
 
.swatch-attribute{
	float: left;
	width: 100%;
	border-top: 1px solid lightgrey;
	padding: 5px 0px;
}

.swatch-attribute-label {
    font-weight: 300;
    position: relative;
    color: grey;
    line-height: 30px;
}

.swatch-attribute-label.required {
    padding-right: 10px;
}

.swatch-attribute-label[data-required="1"]:after {
    content: '*';
    color: red;
    position: absolute;
    right: -11px;
    top: -2px;
    font-weight: bold;
    font-size: 1em;
}

.swatch-attribute-selected-option {
    padding-left: 17px;
    line-height: 30px;
    font-weight: 300;
    color: black;
    font-size: 14px;
}

.swatch-attribute-options {
    margin-top: 10px;
}

.swatch-attribute-options select{
    background-image: url("https://rump-studio.de/pub/static/frontend/rump/bruno/de_DE/images/misc/select-arrow.png");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 40px 40px;
	width: 100%;
	float: left;
	height: 40px;
	line-height: 40px;
	border: 1px solid rgba(26, 26, 26, 0.5);
	box-sizing: border-box;
	font-size: 14px;
	font-weight: 300;
	padding: 0px 5px;
}
.swatch-attribute-options select:hover{
	cursor: pointer;
}

.swatch-attribute-options select option{
	padding: 5px;
}

.swatch-option {
    width: 30px;
    padding: 1px 2px;
    min-width: 30px;
    height: 20px;
    float: left;
    margin: 0 10px 5px 0;
    text-align: center;
    cursor: pointer;
    position: relative;
    border: 1px solid rgb(218, 218, 218);
    overflow: hidden;
    text-overflow: ellipsis;
}
.swatch-option.image{
    width: 23%;
    padding-top: 20%;
/*     padding: 5px; */
    box-sizing: border-box;
    border: none;   
    height: auto;
    border: 1px solid white;
    text-align: center;
    margin: 0px 1% 5px;
}
.swatch-option.image img{
    max-width: 100%;
}

.swatch-option.text {
    background: #F2F2F2;
    color: #7F7F7F;
    font-size: 10px;
    font-weight: 700;
    line-height: 30px;
    min-width: 22px;
    /*background-color: #F2F2F2;*/
    box-sizing: border-box;
	width: 48%;
	height: 30px;
	margin: 0px 1% 5px 1%;
}

.swatch-option.selected {
    outline: 2px solid #cc2200 !important;
    border: 1px solid #fff;
    color: #333;
}

.swatch-option.text.selected {
    background-color: #FFF !important;
}

.clearfix:after {
    content: " "; /* Older browser do not support empty content */
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

.swatch-attribute.size .swatch-option, .swatch-attribute.manufacturer .swatch-option {
    background: rgb(240, 240, 240);
    color: rgb(148, 148, 148);
}

.swatch-attribute.size .swatch-option.selected, .swatch-attribute.manufacturer .swatch-option.selected {
    color: black;
    background: #fff;
    border: 1px solid #fff;
}

.swatch-option:not(.disabled):hover {
    outline: 1px solid #999;
    border: 1px solid #fff;
    color: #333;
}

.swatch-option.image:not(.disabled):hover,
.swatch-option.color:not(.disabled):hover {
    outline: 2px solid #FF5216;
    border: 1px solid #fff;
}

.swatch-option.disabled {
    cursor: default;
}

.swatch-option.disabled:after {
	position: absolute;
	left: 15%;
	top: 50%;
	height: 2px;
	background: #cc2200;
	content: "";
	width: 70%;
	display: block;
}

.swatch-option-tooltip {
    display: none !important;
}

.swatch-option-tooltip .corner,
.swatch-option-tooltip-layered .corner {
    left: 40%;
    position: absolute;
    bottom: 0;
    height: 8px;
}

.swatch-option-tooltip .corner:after,
.swatch-option-tooltip-layered .corner:after {
    content: '';
    position: relative;
    top: 1px;
    left: -15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 7.5px 0 7.5px;
    border-color: #fff transparent transparent transparent;
    font-size: 1px;
}

.swatch-option-tooltip .corner:before,
.swatch-option-tooltip-layered .corner:before {
    content: '';
    position: relative;
    top: 2px;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8.5px 0 8.5px;
    border-color: #adadad transparent transparent transparent;
    font-size: 1px;
}

.swatch-option-tooltip .image,
.swatch-option-tooltip-layered .image {
    display: block;
    height: 130px;
    width: 130px;
    /*margin: 0 0 5px;*/
    margin: 0 auto;
}

.swatch-option-tooltip .title {
    max-width: 140px;
    min-height: 20px;
    max-height: 200px;
    color: rgb(40, 40, 40);
    text-align: center;
    display: block;
    overflow: hidden;
}

.swatch-opt {
    margin: 20px 0;
}

.swatch-more {
    display: inline-block;
    margin: 2px 0;
    text-decoration: none !important;
    position: static;
    z-index: 1;
}

/* Layered Features */
.swatch-option-link-layered {
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
}

.swatch-option-tooltip-layered {
    width: 140px;
    position: absolute;
    background: #fff;
    color: rgb(148, 148, 148);
    border: 1px solid #adadad;
    display: none;
    z-index: 999;
    left: -47px;
}

.swatch-visual-tooltip-layered {
    height: 160px;
    top: -170px;
}

.swatch-textual-tooltip-layered {
    height: 30px;
    top: -40px;
}

.swatch-option-link-layered:hover > .swatch-option-tooltip-layered {
    display: block;
}

.swatch-attribute-options .swatch-option-tooltip-layered .title {
    width: 100%;
    height: 20px;
    position: absolute;
    bottom: -5px;
    left: 0;
    color: rgb(40, 40, 40);
    text-align: center;
    margin-bottom: 10px;
}

.swatch-option-disabled:after {
    content: '';
    position: absolute;
    width: 42px;
    height: 2px;
    background: red;
    transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
    -moz-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    z-index: 995;
    left: -4px;
    top: 10px;
}

.swatch-option-disabled {
    outline: none !important;
    cursor: default;
    border: 0;
}

/* Bugfix for Add To Cart button */
.swatch-opt-listing {
    margin-bottom: 10px;
}

.swatch-option-loading {
    content: url("../images/loader-2.gif");
}
