/*
@author: Innam Hunzai <innam@techarete.com>
@project: Car Parts SVG Tool 
@version: 1.0 beta
*/

.background {
    fill: none;
    pointer-events: all;
}
.active {
    fill: orange;
}

.selectable {

}

.draggable {
    cursor: move;
}

path {
    fill:white;
    stroke:black;
    stroke-width:70;
    stroke-linejoin:round;
    stroke-linecap:round;
}

.nostrok {
    fill:black;
    stroke:black;
    stroke-width:0;
}

.strok50 {
    stroke-width:50;
}

#car-app-tools {
    height: 34px;
    margin-bottom: 10px;
}
#svg-container {
    width: 100%;
    height: 100%;
}


body { background:#eee; margin:0 }
svg {
    display:block; border:1px solid #ccc; position:relative;
    width:100%; height:100%; background:#fff;
}

.btn:hover, .btn:focus {
    background-color: white;
}
.btn-default.active, .btn-default.active:hover {
    background-color:  #d4d4d4;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #car-app-container {
      height: 500px;
	  float: left;
	  width: 100%;
	  
  }
}