.loading-block {
    position: relative;
    pointer-events: none;
}

.loading-block::before {
    content: "";
    background: rgba(255,255,255,0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
}

.loading-block::after {
    content: "";
    border-width: 3px;
    border-style: solid;
    border-color: #333 rgba(255,255,255,0.75) rgba(255,255,255,0.75);
    width: 25px;
    height: 25px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    border-radius: 100%;
    z-index: 99;
    -webkit-animation-name: ste-loader-rolling;
    animation-name: ste-loader-rolling;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes ste-loader-rolling {
    from {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.profile-container {
    display: flex;
    flex-wrap: wrap;
}

.profile-container .tabs {
    margin: 0px;
    padding: 0px;
    list-style: none;
    width: 220px;
    background: #fff;
}
.profile-container .tabs li {
    background: none;
    color: #666;
    display: table;
    padding: 0;
    cursor: pointer;
    margin-bottom: 20px;
    position: relative;
}

.profile-container .tabs li:hover, 
.profile-container .tabs li:focus,
.profile-container .tabs li.current {
    color: #000;
}

.profile-container .tabs li::before {
    content: "";
    background: #000;
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all ease 0.35s;
    -moz-transition: all ease 0.35s;
    transition: all ease 0.35s;
}

.profile-container .tabs li.current::before {
    width: 100%;
}

.profile-container .tab-content-outer-wrap {
    background: #f2f0f0;
    padding: 4%;
    width: calc(100% - 250px);
    margin-left: 30px;
}

.profile-container .logout-link {
    margin-bottom: 30px;
    text-align: right;
}

.profile-container .logout-link a {
    font-size: 0.6666em;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
    line-height: 1.3;
    background: #333;
    padding: 7px 10px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

.profile-container .logout-link a:hover {
    background: #555;
}

.profile-container .tab-content:not(.current) {
    display: none;
}

.stk-user-info {
    margin-bottom: 20px;
}

.stk-user-info:last-child {
    margin-bottom: 0;
}

.stk-user-info .label-wrap {
    font-size: 0.8888em;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 5px;
}

#tab-1 .stk-user-info {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    padding-bottom: 15px;
}

#tab-1 .stk-user-info:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

#tab-1 .stk-user-info .label-wrap {
    margin-bottom: 0;
    width: 100px;
}

#tab-1 .stk-user-info .stk-user-fields {
    line-height: 1.3;
    font-size: 1em;
    padding-left: 15px;
    flex: 1;
}

.tab-content .stk-user-fields input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]) {
    border: 1px solid rgba(0,0,0,0.1);
}

.advance-search-section #surplus-search-form input, 
.advance-search-section #surplus-search-form select {
    background-color: #fff;
}

.tab-content form {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1.5%;
    margin-right: -1.5%;
}

.tab-content form .stk-user-info {
    width: 50%;
    padding-left: 1.5%;
    padding-right: 1.5%;
}

.tab-content form .submit-button {
    width: 100%;
    padding-left: 1.5%;
    padding-right: 1.5%;
}

.tab-content form .submit-button input[type="submit"] {
    font-size: 0.8888em;
    padding: 15px 30px;
    letter-spacing: 0.5px;
    background: #333;
    border: 1px solid #333;
}

.tab-content form .submit-button input[type="submit"]:hover, 
.tab-content form .submit-button input[type="submit"]:focus {
    background: none;
    color: #333;
}

.post-repeater-outer-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1.5%;
    margin-right: -1.5%;
}

.post-repeater-outer-wrap .post-repeater {
    width: 47%;
    margin-left: 1.5%;
    margin-right: 1.5%;
    margin-bottom: 30px;
}

.post-repeater-outer-wrap .post-repeater .post-thumbnail {
    margin-bottom: 20px;
}

.post-repeater .entry-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.1112em;
    line-height: 1.5;
}

.post-repeater-outer-wrap .post-repeater .entry-title {
    text-align: center;
    font-size: 0.8888em;
    font-weight: 700;
}

.post-repeater .entry-title a {
    color: inherit;
    display: inline-block;
}

.post-repeater .entry-meta {
    display: flex;
    flex-wrap: wrap;
    margin-top: 5px;
}

.post-repeater .entry-meta > span {
    margin-top: 10px;
    margin-right: 15px;
    border-right: 1px solid rgba(0,0,0,0.1);
    padding-right: 15px;
    flex: 1;
    font-size: 0.8888em;
}

.post-repeater .entry-meta > span.review {
    flex: initial;
}

.post-repeater .entry-meta > span:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.post-repeater .entry-meta > span .meta-title {
    display: block;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.7;
    margin-bottom: 5px;
}

.post-repeater .entry-meta > span a {
    display: inline-block;
    margin-right: 10px;
    color: #666;
    line-height: 1.3;
    margin-bottom: 5px;
}

.post-repeater .entry-meta > span a:hover, 
.post-repeater .entry-meta > span a:focus {
    color: #333;
}

.post-repeater .entry-meta .review .jq-ry-container {
    padding: 0;
    width: 102px !important;
}

.post-repeater .entry-meta .review .jq-ry-group-wrapper svg {
    width: 18px;
    margin-right: 3px;
    height: 18px;
}

.post-repeater .course-description {
    margin-top: 20px;
}

.post-repeater .course-description .description-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1em;
    line-height: 1.5;
    text-decoration: underline;
}

.post-repeater .course-description .entry-content, 
.post-repeater .course-description .button-wrap {
    margin-top: 20px;
}

.post-repeater .course-description .entry-content p {
    margin-top: 0;
    margin-bottom: 15px;
}

.post-repeater .course-description .entry-content p:last-child {
    margin-bottom: 0;
}

.post-repeater-outer-wrap .post-repeater .btn-readmore {
    background: #333;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    line-height: 1.5;
    display: inline-block;
    border-radius: 5px;
}

.post-repeater-outer-wrap .post-repeater .btn-readmore:hover {
    background: #555;
}

#surplus-search-form.course .search-field-wrap.event-attributes, 
#surplus-search-form.course .search-field-wrap.instructor-attributes {
    display: none;
}

#surplus-search-form.event .search-field-wrap.course-attributes, 
#surplus-search-form.event .search-field-wrap.instructor-attributes {
    display: none;
}

#surplus-search-form.instructor .search-field-wrap.course-attributes, 
#surplus-search-form.instructor .search-field-wrap.event-attributes {
    display: none;
}

.surplus-login-form-wrap, 
.surplus-register-form-wrap {
    border: 1px solid rgba(0,0,0,0.1);
    padding: 40px;
    margin: 0 auto 3em;
    max-width: 768px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.07);
}

.surplus-login-form-wrap form, 
.surplus-register-form-wrap form {
    margin: 0;
}

.surplus-login-form-wrap form .field-wrap, 
.surplus-register-form-wrap form > div {
    margin-bottom: 25px;
}

.surplus-login-form-wrap form label, 
.surplus-register-form-wrap form label {
    display: block;
    font-size: 0.8888em;
    font-weight: 600;
    margin-bottom: 5px;
}

.surplus-login-form-wrap form input[type="text"], 
.surplus-login-form-wrap form input[type="email"], 
.surplus-login-form-wrap form input[type="url"], 
.surplus-login-form-wrap form input[type="password"], 
.surplus-login-form-wrap form textarea, 
.surplus-register-form-wrap form input[type="text"], 
.surplus-register-form-wrap form input[type="email"], 
.surplus-register-form-wrap form input[type="url"], 
.surplus-register-form-wrap form input[type="password"], 
.surplus-register-form-wrap form textarea {
    height: 50px;
    padding: 10px 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 5px;
}

.surplus-login-form-wrap form textarea, 
.surplus-register-form-wrap form textarea {
    height: 120px;
}

.surplus-login-form-wrap form input[type="submit"], 
.surplus-register-form-wrap form input[type="submit"] {
    line-height: 1.3;
    font-size: 0.8888em;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 15px 30px;
}

.surplus-register-form-wrap form {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1.5%;
    margin-right: -1.5%;
}

.surplus-register-form-wrap form > div {
    width: 50%;
    padding-left: 1.5%;
    padding-right: 1.5%;
}

.surplus-register-form-wrap form > div:nth-last-of-type(1), 
.surplus-register-form-wrap form > div:nth-last-of-type(2) {
    width: 100%;
}

.surplus-register-form-wrap form input[type="submit"] {
    margin-left: 1.5%;
    margin-right: 1.5%;
}

.surplus-register-form-wrap .course-wishlist {
    display: inline-block;
    margin: 25px 1.5% 0;
}

.surplus-login-form-wrap .login-error {
    display: block;
    font-size: 0.8888em;
    background: rgb(255, 0, 0, 0.1);
    line-height: 1.5;
    border-left: 3px solid #f00;
    padding: 5px 15px;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0.5px;
}

#surplus-search-form {
    display: flex;
    flex-wrap: wrap;
    background: #eee;
    border-radius: 5px;
    padding: 10px;
}

#surplus-search-form .search-field-wrap {
    width: calc((100% - 150px) / 4);
    border-right: 1px solid #c8c8c8;
}

#surplus-search-form .search-field-wrap:last-child {
    width: 150px;
    border-right: none;
}

#surplus-search-form .search-field-wrap.event-attributes:nth-child(7), 
#surplus-search-form .search-field-wrap.instructor-attributes:nth-last-of-type(2) {
    border-right: none;
}

#surplus-search-form .search-field-wrap > label {
    font-weight: 600;
    display: none;
    text-align: left;
    padding: 0 20px;
    font-size: 0.8888em;
}

#surplus-search-form input.submit {
    width: 100%;
    height: 100%;
    font-size: 0.8888em;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: #333;
    color: #fff;
    border: none;
}

#surplus-search-form input.submit:hover {
    background: #666;
    color: #fff;
}

#surplus-search-form.course .search-field-wrap {
    width: calc((100% - 150px) / 5);
}

#surplus-search-form.course .search-field-wrap:last-child {
    width: 150px;
    border-right: none;
}

#surplus-search-form.course .search-field-wrap.course-attributes {
    background: #fff;
    position: relative;
}

#surplus-search-form.course .search-field-wrap.course-attributes:nth-child(4) > label, 
#surplus-search-form.course .search-field-wrap.course-attributes:nth-child(5) > label {
    display: block;
    padding-top: 15px;
    line-height: 1.5;
    color: #666;
}

#surplus-search-form.course .search-field-wrap.course-attributes:nth-child(5) {
    border-right: none;
}

#surplus-search-form input[type="text"], 
#surplus-search-form select {
    border: none;
    border-radius: 0;
    font-weight: 600;
    height: 100%;
    font-size: 0.8888em;
}

#surplus-search-form select {
    color: #666;
}

#surplus-search-form input#search-keyword {
    border-radius: 5px 0 0 5px;
}
        
.advanced-search-field.course-duration, 
.advanced-search-field.course-cost {
    position: absolute;
    top: calc(100% - 5px);
    left: 0;
    right: 0;
    display: none;
    background: #fff;
    z-index: 9;
    padding: 0 30px 0 20px;
}

.advanced-search-field.course-duration.open, 
.advanced-search-field.course-cost.open {
    display: block;
}

.advanced-search-field .ui-slider {
    background: #ddd;
    height: 5px;
    width: 100%;
    margin: 0 auto;
    border-radius: 50px;
    position: relative;
}

.advanced-search-field .ui-slider .ui-slider-range {
    background: #333;
    position: absolute;
    top: 0;
    height: 100%;
}

.advanced-search-field .ui-slider .ui-slider-handle {
    position: absolute;
    width: 10px;
    height: 15px;
    background: #fff;
    border: 1px solid #333;
    top: -5px;
    border-radius: 3px;
    left: 0;
    cursor: e-resize;
}


.advanced-search-field .duration-slider-value, 
.advanced-search-field .cost-slider-value {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-top: 5px;
}

.advanced-search-field .duration-slider-value > span, 
.advanced-search-field .cost-slider-value > span {
    display: flex;
    flex: 1;
    font-size: 0.8888em;
    font-weight: 600;
}

.advanced-search-field .duration-slider-value > span.max-duration, 
.advanced-search-field .cost-slider-value > span.max-duration, 
.advanced-search-field .duration-slider-value > span.max-cost, 
.advanced-search-field .cost-slider-value > span.max-cost {
    justify-content: flex-end;
    margin-right: -10px;
}

.ui-datepicker {
    background: #fff;
    box-shadow: 0px -10px 20px rgba(0,0,0,0.15);
}

.ui-datepicker .ui-datepicker-header {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 15px;
    align-items: center;
}

.ui-datepicker .ui-datepicker-header > a {
    width: 30px;
    height: 30px;
    white-space: nowrap;
    background-color: #f8f8f8;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    text-indent: 40px;
    overflow: hidden;
    background-image: url('data:image/svg+xml; utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%23333" d="M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z"></path></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-header > a:hover {
    background-color: #333;
    border-color: #333;
    background-image: url('data:image/svg+xml; utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%23fff" d="M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z"></path></svg>');
}

.ui-datepicker .ui-datepicker-header > a.ui-datepicker-next {
    order: 3;
    background-image: url('data:image/svg+xml; utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%23333" d="M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z"></path></svg>');
}

.ui-datepicker .ui-datepicker-header > a.ui-datepicker-next:hover {
    background-image: url('data:image/svg+xml; utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%23fff" d="M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z"></path></svg>');
}

.ui-datepicker-header .ui-datepicker-title {
    width: calc(100% - 60px);
    text-align: center;
    font-size: 0.8888em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ui-datepicker-calendar {
    margin: 0;
    border-collapse: separate;
}

.ui-datepicker-calendar th, 
.ui-datepicker-calendar td {
    text-align: center;
    font-weight: 600;
}

.ui-datepicker-calendar th {
    padding: 5px 10px;
    background: #333;
}

.ui-datepicker-calendar td {
    padding: 0;
    font-size: 0.8888em;
}

.ui-datepicker-calendar td a {
    padding: 5px 10px;
    color: #333;
    display: block;
}

.ui-datepicker-calendar td a:hover, 
.ui-datepicker-calendar td a.ui-state-hover {
    background: #666;
    color: #fff;
}

.ui-datepicker-calendar td a.ui-state-highlight {
    background: rgba(0, 0, 0, 0.1);
}

.ui-datepicker-calendar td a.ui-state-highlight:hover {
    background: #666;
    color: #fff;
}

.surplus-forget-password-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.surplus-forget-password-wrap form {
    width: 100%;
    max-width: 540px;
    background: rgba(255,255,255,0.85);
    border-radius: 5px;
    padding: 40px;
}

.surplus-forget-password-wrap form label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.surplus-forget-password-wrap form input[type="text"] {
    width: 100%;
    border-radius: 5px;
    border: 1px solid rgba(0,0,0,0.2);
    height: 50px;
}

.surplus-forget-password-wrap form .field-wrap.submit {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.surplus-forget-password-wrap form input[type="submit"] {
    background: #333;
    border: none;
    color: #fff;
    line-height: 1.5;
    min-width: 100px;
    min-height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    padding: 5px 15px;
    font-size: 18px;
    font-weight: 600;
}

.surplus-forget-password-wrap form input[type="submit"]:hover {
    background: #444;
}

.search-result-outer-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-left: -1.5%;
    margin-right: -1.5%;
}

.search-result-outer-wrap .courses-found {
    margin: 0 1.5% 30px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.2px;
    width: 100%;
}

.search-result-outer-wrap article {
    width: 30.33%;
    margin-left: 1.5%;
    margin-right: 1.5%;
    margin-bottom: 30px;
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.search-result-outer-wrap .entry-header {
    margin-top: 15px;
    margin-left: 25px;
    margin-right: 25px;
}

.search-result-outer-wrap .img-instructor-wrap + .entry-header {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.search-result-outer-wrap .entry-header .entry-title {
    margin-top: 0;
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0.2px;
}

.search-result-outer-wrap .entry-header .designation {
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    color: #999;
    font-size: 14px;
    letter-spacing: 0.2px;
}

.search-result-outer-wrap article .course-description {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.search-result-outer-wrap article .entry-content {
    margin-top: 15px;
    margin-left: 25px;
    margin-right: 25px;
}

.search-result-outer-wrap article > .entry-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.search-result-outer-wrap article .entry-content p {
    margin-top: 0;
    margin-bottom: 20px;
}

.search-result-outer-wrap article .entry-content p:last-child {
    margin-bottom: 0;
}

.search-result-outer-wrap .social-links-wrap {
    background: #eee9ee;
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px;
    margin-top: 15px;
}

.search-result-outer-wrap .social-links-wrap li {
    list-style: none;
    margin: 5px;
    line-height: 1;
}

.search-result-outer-wrap .social-links-wrap li a {
    display: inline-block;
    color: #333;
    padding: 5px;
}

.search-result-outer-wrap .social-links-wrap li a:hover {
    color: #454545;
}

.search-result-outer-wrap article .entry-footer {
    margin-top: 20px;
    background: #eee9ee;
    padding: 5px 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.search-result-outer-wrap article .entry-footer > span {
    display: inline-block;
    flex: 1;
    margin: 5px;
    font-size: 14px;
    letter-spacing: 0.2px;
    line-height: 1.5;
}

.search-result-outer-wrap article .entry-footer > span:last-child {
    flex: initial;
}

.search-result-outer-wrap article .entry-footer > span.review {
    padding-bottom: 3px;
}

.search-result-outer-wrap article .entry-footer > span a {
    color: #000;
    display: inline-block;
    margin-bottom: 3px;
}

.search-result-outer-wrap article .entry-footer > span a:hover {
    text-decoration: underline;
}

.search-result-outer-wrap article .entry-footer > span.category a:not(:last-child)::after {
    content: ",";
    margin-right: 7px;
    display: inline-block;
}

.search-result-outer-wrap article .entry-footer > span svg {
    width: 14px;
    line-height: 1;
    height: auto;
    vertical-align: -2px;
    margin-right: 5px;
}

.search-result-outer-wrap article .entry-header .entry-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.search-result-outer-wrap .entry-header .entry-meta > div {
    margin: 10px 20px 10px 0;
    font-size: 0.7778em;
    font-weight: 700;
    line-height: 1.5;
    color: #999;
}

.search-result-outer-wrap .entry-header .entry-meta .course-instructor {
    flex: 1;
    font-family: "Merriweather";
}

.search-result-outer-wrap .entry-header .entry-meta .course-instructor-wrap {
    position: relative;
    padding-left: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.search-result-outer-wrap .entry-header .entry-meta .course-instructor-wrap svg {
    position: absolute;
    top: 3px;
    left: 0;
}

.search-result-outer-wrap .entry-header .entry-meta .course-instructor-wrap .instructor-block {
    display: inline-block;
    padding-left: 5px
}

.search-result-outer-wrap .entry-header .entry-meta .course-instructor-wrap svg + .instructor-block {
    padding-left: 0;
}

.search-result-outer-wrap .entry-header .entry-meta .course-instructor-wrap .instructor-block:not(:last-child)::after {
    content: ",";
    margin-left: -3px;
}

.search-result-outer-wrap .entry-header .entry-meta > div.course-budget {
    margin-right: 0;
    font-size: 0.6666em;
}

.search-result-outer-wrap .entry-header .entry-meta .budget {
    background: #00aeef;
    color: #fff;
    border-radius: 50px;
    padding: 3px 10px;
    line-height: 1.5;
}

.enroll-notice {
    background: rgba(100, 214, 87, 0.25);
    font-style: italic;
    border-left: 3px solid rgb(100 214 87);
    text-align: left;
    line-height: 1.5;
    padding: 5px 15px;
    font-weight: 600;
    font-size: 0.8888em;
    letter-spacing: 0.5px;
}

@media screen and (max-width: 1024px) {

    #surplus-search-form .search-field-wrap {
        width: calc(100% / 2);
        border-bottom: 1px solid #c8c8c8;
    }

    #surplus-search-form .search-field-wrap:last-child {
        width: 100%;
        border-right: none;
        border-bottom: none;
    }

    #surplus-search-form.course .search-field-wrap {
        width: calc(100% / 3);
    }

    #surplus-search-form.course .search-field-wrap:last-child {
        width: calc(100% / 3);
    }
}

@media screen and (max-width: 767px) {
    .surplus-login-form-wrap, 
    .surplus-register-form-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .surplus-register-form-wrap form {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 0;
        margin-right: 0;
    }

    .surplus-register-form-wrap form > div {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .surplus-register-form-wrap form input[type="submit"], 
    .surplus-register-form-wrap .course-wishlist {
        margin-left: 0;
        margin-right: 0;
    }

    #surplus-search-form {
        flex-direction: column;
    }

    #surplus-search-form .search-field-wrap {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #c8c8c8;
    }

    #surplus-search-form input#search-keyword {
        border-radius: 5px 5px 0 0;
    }

    #surplus-search-form.course .search-field-wrap {
        width: 100%;
    }

    #surplus-search-form.course .search-field-wrap:last-child {
        border-bottom: none;
        width: 100%;
    }

    #surplus-search-form.course .search-field-wrap.course-attributes:nth-child(4) > label, 
    #surplus-search-form.course .search-field-wrap.course-attributes:nth-child(5) > label {
        padding-bottom: 15px;
    }

    #surplus-search-form.course .search-field-wrap.course-attributesnth-child(5) {
        border-bottom: none;
    }

    .profile-container {
        flex-direction: column;
    }

    .profile-container .tabs {
        width: 100%;
        margin-bottom: 30px;
    }

    .profile-container .tabs li {
        display: inline-block;
        font-size: 0.8888em;
        margin-right: 15px;
        margin-bottom: 10px;
    }

    .profile-container .tab-content-outer-wrap {
        width: 100%;
        margin-left: 0;
        padding: 30px 15px;
    }

    .post-repeater-outer-wrap {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .post-repeater-outer-wrap .post-repeater {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    #tab-1 .stk-user-info {
        flex-direction: column;
    }

    #tab-1 .stk-user-info .label-wrap {
        width: 100%;
        margin-bottom: 5px;
    }

    #tab-1 .stk-user-info .stk-user-fields {
        padding-left: 0;
    }

    .tab-content form {
        margin-left: 0;
        margin-right: 0;
        flex-direction: column;
    }

    .tab-content form .stk-user-info {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .tab-content form .submit-button {
        padding-left: 0;
        padding-right: 0;
    }

    .post-repeater .entry-meta {
        flex-direction: column;
    }

    .post-repeater .entry-meta > span {
        margin-right: 0;
        padding-right: 0;
        border-right: none;
        flex: auto;
    }

    .search-result-outer-wrap {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .search-result-outer-wrap .courses-found {
        margin-left: 0;
        margin-right: 0;
    }

    .search-result-outer-wrap article {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}