body {
    background-color: #121C28;
    font-family: 'Raleway', sans-serif;

    color: #F1F1F3;
}

body.body-logged {
    /*background-color: #E5E5E5;*/
    background-color: #fff;
    color: #282828;
}

.card-title {
    font-size: 24px;
    color: #636378;
    font-weight: bold;
}

.card-description {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 35px;
    padding-left: 10px;
    padding-right: 10px;
}

a,
a:hover {
    color: inherit;
    text-decoration: none;
}

input:focus,
textarea:focus,
select:focus,
button:focus,
.form-control:focus,
input:active,
textarea:active,
select:active,
button:active,
.form-control:active {
    border-color: inherit;
    color: inherit;
}

input,
textarea,
select,
button,
checkbox,
.form-control {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    outline: 0;
    border-color: #F1F1F3;
    color: #F1F1F3;
}

.body-logged input,
.body-logged textarea,
.body-logged select,
.body-logged button,
.body-logged checkbox,
.body-logged .form-control {
    border-color: #C8C8D1;
    color: #282828;

}

.form-control:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

input,
textarea,
.form-control {
    background-color: transparent;
}

.not-logged label {
    color: #F1F1F3;
    font-weight: normal;
}

.body-logged label {
    color: #282828;
    font-weight: normal;
}

.form-control {
    height: 55px;
}

.btn {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    font-weight: bold;
}

.btn:hover {

}

.btn.btn-isp {
    background-color: #F08724;
    font-weight: bold;
    width: 100%;
    padding-top: 14px;
    padding-bottom: 14px;
    color: white;
}

.btn.btn-danger:focus, .btn.btn-danger:hover {
    background-color: #c12e2a !important;
}

.inline {
    display: inline;
}

.btn.btn-empty {
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
    display: inline;
}

.form-check-label {
    font-weight: normal;
}

/*   CHECKBOX    */
.form-check {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.form-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid #F1F1F3;
}

/* On mouse-over, add a grey background color */
.form-check:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.form-check input:checked ~ .checkmark {
    background-color: transparent;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.form-check input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.form-check .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*   CHECKBOX  END   */

/*          CHECKBOX AS SWITCH              */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    vertical-align: top;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-label {
    margin-top: 6px;
    display: inline-block;
    margin-right: 5px;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #F08724;
}

input:focus + .slider {
    box-shadow: 0 0 1px #F08724;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/*          END CHECKBOX AS SWITCH              */

.navbar {
    position: fixed;
    height: 100%;
    width: 275px;
    float: left;

    background-color: #121C28;
}

.slide-right {
    margin-left: 275px;
    position: relative;
}

.navbar {

    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.navbar-nav {
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
    float: none;
}

.navbar-brand, .navbar-nav > li > a {
    text-shadow: none;
    color: #F1F1F3;
}

.navbar-nav > li {
    float: none;
    text-transform: uppercase;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px;
}

.navbar-nav > li:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);

}

.search-bar {
    background-color: #EFEFEF;
    height: 55px;
}

.search-bar .loop {
    float: left;
    margin-top: 17px;
    margin-left: 15px;
}

.search-bar .input-field {
    float: left;

}

.search-bar .form-control {
    color: #121C28;
    border-color: transparent;
}

.user {
    color: #121C28;
    float: right;
    margin-top: 8px;
    margin-right: 20px;
    position: relative;
}

.user .user-dropdown {
    position: absolute;
    list-style: none;
    padding-top: 45px;
    width: 100%;
    display: none;
}

.user:hover .user-dropdown,
.user-dropdown:hover {
    display: block;

}

.user .initials {
    width: 35px;
    height: 35px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background: #F08724;
    color: white;
    font-weight: bold;
    text-align: center;
    padding-top: 7px;
    float: left;
}

.user .full_name {
    margin-top: 8px;
    margin-left: 10px;
    float: left;
}

.admin-container {

}

.navbar-nav.pull-down {
    bottom: 0;
    position: absolute;
    width: 100%;
    background-color: #2C435F;
}

.navbar-nav.pull-down li:last-of-type {
    border-bottom: 0;
}

.navbar-nav.pull-down .icon {
    float: right;
}

.copy {
    bottom: 0;
    color: gray;
    text-align: center;
}

.container {
    width: 100% !important;
}

.bubble-number {
    background: #0B3871;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;
    width: 30px;
    height: 30px;
    color: white;
    padding-top: 4px;
    text-align: center;
    float: left;
}

.bubble-number-small {
    background: #0B3871;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;
    width: 16px;
    height: 16px;
    color: white;
    padding-top: 1px;
    text-align: center;
    float: left;
    font-size: 10px;
}

.bubble-number.selected {
    background: #F08724;
}

.bubble-table {
    color: #0B3871;
    list-style: none;
    padding: 0;
    margin: 0;;
    /*display: table;*/
}

.bubble-table li:first-of-type {
    border-top: none;
}

.bubble-table li {
    height: 50px;
    padding-top: 15px;
    padding-bottom: 1px;
    vertical-align: middle;
    background: none;
    border-left: none;
    border-right: none;
    border-bottom: none;
    /*display: table-row;*/
}

.bubble-table li.selected {
    background-color: #eee;
}

.bubble-table div {
    /*float: left;*/
}

.bubble-table .b-nb,
.bubble-table .b-humb {
    border: none;
}

.bubble-table .b-bubble {
    /*border-top: 1px solid #333333;*/
    /*border-bottom: 1px solid #333333;*/
}

.bubble-table .b-item {
    color: #709FDD;
}

.bubble-table .b-price {
    font-weight: bold;
}

.bubble-table .b-plus {
    color: #666666;
    font-size: 45px;
    line-height: 1px;
    margin-top: 10px;
}

.bubble-table .b-sq {
    color: #666666;
    font-size: 26px;
    line-height: 1px;
    margin-top: 10px;
}

.bubble-table .b-a-plus {
    color: #666666;
    font-size: 35px;
    line-height: 1px;
    margin-top: 15px;
    cursor: pointer;
}

.ui-sortable-placeholder {
    background-color: #f1f1f1 !important;
}

#canvas_holder {
    max-width: 1467px;
    margin: 50px auto 30px auto;
}

.editor_buttons {
    display: none;
}

.canvas_editor {
    /*display: none;*/
    background: #2C435F;
    height: 50px;
    padding-top: 15px;
    width: 100%;
}

.canvas_editor a {
    margin-left: 7px;
    margin-right: 7px;
}

.form-delete {
    display: inline-block;
    border: none;

}

.form-delete button {
    border: none;
}

.product-sku {
    font-weight: bold;
}

.product-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shortcuts {
    text-align: left;
    float: left;
    font-size: 11px;
}
.shortcuts div{
    margin: 2px 0;
}

.shortcuts pre {
    padding: 1px;
    display: inline;
    font-size: 12px;

}
