input:focus {
    outline: none;
}

a {
    text-decoration: none;
}

button {
    border: none;
}

.main-search-box {
    margin-top: 15px;
}

.main-search-box.place-search {
    text-align: right;
    margin-bottom: 25px;
}

.main-search-box.place-search input {
    width: 400px;
}

.main-search-box input {
    border-radius: 10px;
    border: 1px solid lightgray;
    padding: 5px 15px;
}

input.main-search {
    width: 600px;
    margin-right: 0 !important;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    transition: all .3s;
}

input.main-search:focus, input.main-search:focus ~ button.main-search {
    -webkit-box-shadow: 0px 0px 20px 0px rgba(173,173,173,0.3);
    -moz-box-shadow: 0px 0px 20px 0px rgba(173,173,173,0.3);
    box-shadow: 0px 0px 20px 0px rgba(173,173,173,0.3);
}

a.custom {
    color: rgb(242, 160, 77);
    transition: all .3s;
}

a.custom:hover {
    color: rgb(229, 146, 63);;
}

.btn-custom {
    font-size: 13px;
    background-color: rgb(242, 160, 77);;
    transition: all .3s;
    border-radius: 20px;
    color: black;
    padding: 10px 25px;
}

.btn-custom.full {
    display: inline-block;
    text-align: center;
    width: 100%;
}

.btn-custom:hover {
    background-color: rgb(229, 146, 63);;
}

.categories {
    text-align: center;
    margin-top: 25px;
}

.category {
    display: inline-block;
    border: 1px solid lightgray;
    border-radius: 15px;
    padding: 3px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all .3s;
    margin-right: 10px;
    margin-bottom: 10px;
}

.category.active {
    border: 1px solid #795C9D;
    color: #795C9D;
}

*:focus {
    outline: none;
}

input.custom, select.custom, textarea.custom {
    padding: 2px 5px;
    border: 1px solid lightgray;
    border-radius: 5px;
}

input.custom {
    padding: 3px 10px;
}

.has-error .help-block {
    color: #ff5c5c;
    font-size: 12px;
    font-weight: 300;
}

/* Checkbox */
/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
    position: absolute;
    left: 0;
    opacity: 0.01;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
    position: relative;
    padding-left: 2.3em;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1.4em;
    height: 1.4em;
    border: 1px solid #aaa;
    background: #FFF;
    border-radius: .2em;
    -webkit-transition: all .275s;
    transition: all .275s;
}

/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
    content: '✔';
    position: absolute;
    top: .800em;
    left: .45em;
    font-size: .85em;
    color: #795C9D;
    line-height: 0;
    -webkit-transition: all .2s;
    transition: all .2s;
}

/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0) rotate(45deg);
    transform: scale(0) rotate(45deg);
}

[type="checkbox"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
}

/* Disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #e9e9e9;
}

[type="checkbox"]:disabled:checked + label:after {
    color: #777;
}

[type="checkbox"]:disabled + label {
    color: #aaa;
}