
/** Plugins Import **/

@import url("font-awesome.min.css");
@import url('https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,300i,700');

/** Style Switcher CSS **/

.unsw-wrap {
    position: fixed;
    top: 150px;
    right: 0;
    z-index: 999;

    font-family: "Open Sans Condensed", serif;
    font-size: 14px;
}

.unsw-wrap * {
    outline: none!important;
}

.unsw-button {
    float: left;
    padding: 7px 8px 3px 12px;
    margin-top: 10px;
    background: #222;
    border-radius: 50% 0 0 50%;
}

.unsw-button:hover {
    background: #fff !important;
    cursor: pointer;
}

.unsw-button i {
    font-size: 20px;
    color: #fff;

    -webkit-animation-name: spin;
    -webkit-animation-duration: 4000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 4000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 4000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-transition: rotate(3600deg);
}

.unsw-button:hover i {
    color: #222 !important;
}

.unsw-panel {
    position: relative;
    float: right;
    color: #eee;
    background: #333;
    width: 300px;
    height: 500px;
    margin-right: -300px;
    padding: 10px 20px;
    border-radius: 10px 0 0 10px;
    overflow: hidden;

    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.unsw-option-group:hover {
    z-index: 999;
}

.unsw-panel.unsw-open {
    margin-right: 0;

    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.unsw-option-title {
    font-weight: lighter;
    font-size: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid #444;
    margin-bottom: 10px;
}

.unsw-option-title small {
    font-size: 13px;
    float: right;
    line-height: 41px;
}

.unsw-option-field {
    margin-bottom: 10px;
    position: relative;
}

.unsw-field-color,
.unsw-field-image {
    position: relative;
    width: 30px;
    height: 30px;
    display: inline-block;
    float: left;
    border-radius: 10px 0 10px 0;
    margin-right: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    text-align: center;
    font-size: 12px;
}

.unsw-field-color:hover:after,
.unsw-field-color.unsw-active:after,
.unsw-field-image:hover:after,
.unsw-field-image.unsw-active:after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}


.unsw-field-textbutton {
    color: #fff;
    display: inline-block;
    padding: 0 10px;
    line-height: 30px;
    border: solid 1px #444;
    margin-right: 10px;
    margin-bottom: 10px;
}

.unsw-field-textbutton:hover,
.unsw-field-textbutton.unsw-active {
    color: #222;
    background: #fff;
    border-color: transparent;
}

.unsw-field-imgbutton {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 10px 0 10px 0;
    margin-right: 10px;
    cursor: pointer;
    border: solid 2px #eee;
}

.unsw-field-imgbutton:hover:after,
.unsw-field-imgbutton.unsw-active:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    margin-left: -3px;
    background: #fff;
    border-radius: 50%;
}

.unsw-field-colorpicker {
    display: inline-block !important;
    padding: 0 10px 0 40px;
    color: #222;
    border: solid 1px #444;
    height: 35px;
    background: #333;
}


.unsw-cp-button {
    border: solid 1px #444 !important;
    background: #333 !important;
    position: absolute;
    left: 0;
    top: 0;
}

.unsw-cp-button .sp-dd {
    display: none;
}

.unsw-cp-button .sp-preview{
    margin-right: 0;
}

.unsw-cp-button .sp-preview {
    border: solid 1px #ccc;
    width: 25px;
    height: 25px;
}
.txt-center{
    text-align: center;
}



.unsw-clearfix {
    clear: both;
}