h2 {
    margin-bottom: 20px !important;
}

upis-intern-top-line-type.ui-datepicker-year {
    display: inline !important;
}

.upis-box-search {
    background-color: #fff;
}

.row {
    margin-top: 10px;
}

input[type=upis-search] {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #f3f2ee;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-radius: 0px;
    font-size: 16px;
    background-color: white;
    background-image: url('../img/searchicon.png');
    background-position: 10px 10px;
    background-repeat: no-repeat;
    padding: 12px 20px 12px 40px;
}

input[type=upis-input] {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #f3f2ee;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-radius: 0px;
    font-size: 16px;
    background-color: white;
    background-image: url('../img/pencil.png');
    background-position: 10px 10px;
    background-repeat: no-repeat;
    padding: 12px 20px 12px 40px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

input[type=upis-input-disabled] {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #f3f2ee;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-radius: 0px;
    font-size: 16px;
    color: #aaaaaa;
    background-color: white;
    background-position: 10px 10px;
    background-repeat: no-repeat;
    padding: 12px 20px 12px 40px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

input[type=upis-input49] {
    width: 49%;
    box-sizing: border-box;
    border: 2px solid #f3f2ee;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-radius: 0px;
    font-size: 16px;
    background-color: white;
    background-image: url('../img/pencil.png');
    background-position: 10px 10px;
    background-repeat: no-repeat;
    padding: 12px 20px 12px 40px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

textarea[type=upis-textarea] {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #f3f2ee;
    border-radius: 0px;
    font-size: 16px;
    background-color: white;
    background-image: url('../img/pencil.png');
    background-position: 10px 10px;
    background-repeat: no-repeat;
    padding: 12px 20px 12px 40px;
    height: 200px;
}

select[type=upis-search-city] {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-radius: 0px;
    font-size: 16px;
    background-color: white;
    background-image: url('../img/place.png');
    background-position: 10px 10px;
    background-repeat: no-repeat;
    padding: 10px 20px 12px 40px;
    color: #000;
}

.upis-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    top: 5px;
    width: 100%;
    border: 1px solid #f3f2ee;
    padding: 0px;
    text-align: left;
    height: 40px;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-radius: 0px;
}

/* Hide the browser's default checkbox */
.upis-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.upis-checkmark {
    position: absolute;
    top: 5px;
    height: 25px;
    width: 25px;
    right: 0px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.upis-container:hover input ~ .upis-checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.upis-container input:checked ~ .upis-checkmark {
    background-color: #ff8573;
}

/* Create the checkmark/indicator (hidden when not checked) */
.upis-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.upis-container input:checked ~ .upis-checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.upis-container .upis-checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.upis-vl {
    border-left: 6px solid #c1c1c1;
    height: 100%;
    padding: 0px 5px;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 230px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

.modal-body {padding: 2px 16px;}

.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

.adress-info {
    background-color: #f3f2ee;
    padding: 5px 15px 5px 15px;
}

.adress-info p {
    margin-bottom: 0px;
}

.company-description {
    padding: 25px 0px 15px 0px;
}

.upis-tabs-container {
    background: #f3f2ee;
    padding: 0 15px;
    text-align: left;
}

.upis-tabs-list {
    list-style-type: none;
    display: block;
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.upis-tab {
    display: inline-block;
    padding: 0;
    margin: 0;
    position: relative;
}

.upis-tab>a {
    padding: 14px 20px;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: solid transparent;
    position: relative;
    text-decoration: none;
    -webkit-transition: background .2s ease-in-out,color .2s ease-in-out,border .2s ease-in-out;
    -o-transition: background .2s ease-in-out,color .2s ease-in-out,border .2s ease-in-out;
    transition: background .2s ease-in-out,color .2s ease-in-out,border .2s ease-in-out;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: transparent !important;
    background-color: transparent !important;
    color: black !important;
    font-family: "pf_dintext_promedium", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.upis_tab_active>a {
    cursor: default;
    text-decoration: none;
    color: inherit;
    -webkit-transition: background .2s ease-in-out, color .2s ease-in-out;
    -o-transition: background .2s ease-in-out, color .2s ease-in-out;
    transition: background .2s ease-in-out, color .2s ease-in-out;
    -webkit-box-shadow: none;
    box-shadow: none
}

.upis_tab_active>a:hover {
    cursor: default;
    -webkit-box-shadow: none;
    box-shadow: none
}

/* .upis_tab_active>a::after { */
.upis-tabs-container ul .upis_tab_active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #acdaca;
}

.upis-tabs-container ul li:hover::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #acdaca;
}

.upis-tabs-top {
    border-top: 2px solid #f3f2ee !important;
}

.upis-button-div {
    padding-bottom: 15px;
    padding-right: 0px;
    float: right;
}

.upis-button2-div {
    /*padding-bottom: 15px;*/
    padding-right: 0px;
}

.upis-button2-div .button.gform_button {
    border-color: #2f415f;
    border-radius: 3px;
    padding: 10px 15px 10px 15px;
    display: block;
    color: black;
    border: 1px solid;
    font-weight: normal;
}
.upis-button2-div .button.gform_button:hover, .button.gform_button.active {
    color: white;
    background: #2f415f;
}

.upis-button2-div .button.gform_button.active {
    color: white;
    background: #d9e02e;
}

.upis-intern-top-line {
    width: 100%;
}

.upis-intern-top-line-title {
    float: left;
    font-weight: bold;
    font-size: 16px;
}

.upis-intern-top-line-type {
    float: right;
    font-style: italic;
    margin-left: 10px;
    width: 215px;
}

.upis-intern-bottom-line {
    clear: left;
    text-align: justify;
}

.upis-company-panel-container {
    border: 2px solid #f3f2ee !important;
    border-top: 0 !important;
    padding: 25px 20px !important;
    border-radius: 0 !important;
    overflow: auto;
}

.upis-company-panel {
    text-align: justify;
}

.upis-intern-closer {
    clear: both;
    padding-bottom: 10px;
}

.tabs-row-even {
    padding: 10px;
    background-color: #f3f2ee;
}

.tabs-row-odd {
    padding: 10px;
    background-color: #fcfbf8;
}

.upis-company-panel-inactive {
    display: none;
}

.input-row {
    padding-bottom: 20px;
}

.notificationNew {
    background-color: #fffa90 !important;
}

.bachlor_table_row_even {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #fcfbf8;
    overflow: auto;
    border-bottom: 2px solid #e2e1df;
    clear: both;
}

.bachlor_table_row_odd {
    padding-top: 10px;
    padding-bottom: 10px;
    overflow: auto;
    border-bottom: 2px solid #e2e1df;
    clear: both;
}

.bachelor_table_row_even div {
    color: #393939;
    font-family: "Arial", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
}

.bachelor_table_row_odd div {
    color: #393939;
    font-family: "Arial", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
}

.closer {
    clear: both;
}

.bachlor_table_header {
    background-color: #fcfbf8;
    overflow: overlay;
    border-bottom: 2px solid #e2e1df;
    line-height: 50px;
    font-family: "pf_dintext_promedium", sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.filter-tab {
    padding: 5px 20px;
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: solid transparent;
    text-decoration: none;
    box-shadow: none;
    border-color: transparent !important;
    color: black !important;
    font-family: "pf_dintext_promedium", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    background-color: #f3f2ee;
    margin-bottom: 10px;
    margin-right: 10px;
    position: relative;
}

.remove-button {
    position: absolute;
    right: 1px;
    top: 0px;
    cursor: pointer;
}

.upis-search-checkbox {
    padding: 12px 20px 12px 40px !important;
}

#extended_search_row {
    display: none;
    padding-bottom: 0px;
}

#pages-order-row {
    text-align: right;
    margin-top: 0px;
}

.active-page {
    background-color: #000 !important;
    cursor: default !important;
    color: #fff !important;
}

.items_per_page {
    width: 50px;
    float: right;
    margin-right: 20px;
}

.pagination_items {
    float: right;
}

.pagination_item {
    margin-left: 10px;
}

.view-tab {
    width: 40px;
    height: 40px;
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    box-shadow: none;
    position: relative;
    float: right;
    margin-left: 5px;
    cursor: pointer;
    border-radius: 5px;
    border: 2px solid #f3f2ee;
}

.view-tab-active {
    border: 2px solid #acdaca !important;
    cursor: default !important;
}

#simple_list {
    background-image: url('../img/simple_list.svg');
}

#blog_list {
    background-image: url('../img/blog_list.svg');
}

#map_list {
    background-image: url('../img/map_list.svg');
}

#heatmap_list {
    background-image: url('../img/heatmap_list.svg');
}

#sankey_list {
    background-image: url('../img/sankey_list.svg');
}

#map {
    width:100%;
    height:100%;
    min-height:250px;
    z-index: 1;
}

.clean-table {
    background-color: transparent;
    border: 0;
    margin-bottom: 0px;
}

.workplace-info {
    background-color: #f3f2ee;
    padding: 5px 15px 15px 15px;
}

.intern-info {
    background-color: #f3f2ee;
}

.intern-info table {
    margin-bottom: 0px !important;
}

.bachelor-info {
    background-color: #f3f2ee;
    padding: 5px 15px 15px;
    height: 270px;
}

.internship_table_row_even {
    padding-top: 20px;
    padding-bottom: 10px;
    display: block;
    clear: both;
    overflow: auto;
    background: #f5f5f5;
}

.internship_table_row_odd {
    padding-top: 20px;
    display: block;
    clear: both;
    overflow: auto;
}

.internship_table_row div h3 {
    margin-bottom: 10px;
}

.internship_table_row div p {
    text-align: justify;
}

.upis-form label {
    font-family: "Arial", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #393939;
    padding-top: 9px;
}

.upis-form .required {
    color: #9f0000;
    font-style: italic;
    font-size: 12px;
    font-weight: 700;
}

.group {
  position: relative;
  margin: 25px 0;
}

.group textarea {
  resize: none;
}

.group input,
textarea {
  background: none;
  font-size: 16px !important;
  padding: 5px 0px 5px 5px;
  display: block;
  width: 100%;
  height: auto;
  border: none;
  border-radius: 0;
  line-height: 24px;
  border-bottom: 1px solid #c6c6c6 !important;
  color: #000000;
}

.group input:focus,
textarea:focus {
  outline: none;
}

.group input:valid ~ label {
  color: #9e9e9e !important;
  top: -20px !important;
}

.group input:focus ~ label,
.group textarea:focus ~ label,
.group textarea:valid ~ label {
  font-size: 12px;
  color: #9e9e9e !important;
  top: -20px !important;
}
.group input:focus ~ .bar:before,
.group textarea:focus ~ .bar:before {
  width: 100%;
}

.group input[type="password"] {
  letter-spacing: 0.3em;
}

input[type="password"] {
  font-size: 1em !important;
}

.group label {
  font-family: "pf_dintext_promedium" !important;
  font-size: 12px;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 300ms ease all;
  font-weight: 400 !important;
  text-transform: uppercase;
  color: #000000;
}

.bar {
  position: relative;
  display: block;
  width: 100%;
}
.bar:before {
  content: '';
  height: 2px;
  width: 0;
  bottom: 0px;
  position: absolute;
  background: #000000;
  transition: 300ms ease all;
  left: 0%;
}

#company-description_ifr {
    height: 300px !important;
}

.screen-reader-text {
    display: none;
}

.ui-corner-all {
    margin: 0px !important;
}

.ui-datepicker-next, .ui-datepicker-prev {
     background: none;
}

label.upisCheckBox {
    padding-top: 0px;
    top: 0px !important;
}

.periodSelectBlock {
    display: none;
}

.upis-company-panel-container a.button {
    min-width: 115px;
}

/* login page */
@import url(https://fonts.googleapis.com/css?family=Montserrat:700);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,300,600);

.login-container {
  width: 1000px;
  height: 600px;
  margin: 100px auto;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 100px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 10px 100px rgba(0, 0, 0, 0.3);
  box-shadow: 0 10px 100px rgba(0, 0, 0, 0.3);
}
.login-container .login-form {
  padding: 100px 40px;
  width: calc(100% - 630px);
  display: inline-block;
  float: left;
  position: relative;
}
.login-container .login-form h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.667em;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 40px 0;
}
.login-container .login-form input {
  width: 100%;
  margin-top: 45px;
}
.login-container .login-form input:focus, .container .login-form input:valid {
  box-shadow: none;
  outline: none;
  background-position: 0 0;
}
.login-container .login-form input:focus {
  border-color: #d05715;
}
.login-container .login-form input::-webkit-input-placeholder {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.login-container .login-form input:focus::-webkit-input-placeholder {
  color: #d05715;
  font-size: 0.778em;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  visibility: visible;
}
.login-container .login-form .login-btn {
  background-color: #d05715;
  border: 0;
  color: #fff;
  padding: 15px 55px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.login-container .login-form .login-btn:focus {
  outline: none;
}
.login-container .login-form .login-btn[disabled] {
  pointer-events: none;
  cursor: not-allowed;
  opacity: .65;
}
.login-container .login-form ul {
  margin: 0;
  padding: 0 40px;
  position: absolute;
  bottom: 60px;
  right: 0;
  left: 0;
}
.login-container .login-form ul li {
  list-style-type: none;
  display: inline-block;
}
.login-container .login-form ul li:last-child {
  float: right;
}
.login-container .login-form ul li a {
  text-decoration: none;
  color: #d05715;
  font-family: 'Source Sans Pro', sans-serif;
}
.login-container .img-content {
  width: calc(100% - 370px);
  height: 600px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.img-locale-lt_LT {
    background-image: url("../../../themes/upis/images/1_WANTed_lt.png");
}
.img-locale-en_GB {
    background-image: url("../../../themes/upis/images/1_WANTed_eng.png");
}
.imgStudent-locale-lt_LT {
    background-image: url("../../../plugins/upis-wp-plugin/img/2_WANTed_lt.png");
}
.imgStudent-locale-en_GB {
    background-image: url("../../../plugins/upis-wp-plugin/img/2_WANTed_eng.png");
}
.login-container .img-content h1 {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  margin-top: 95px;
  font-size: 24px;
}
.login-container .img-content a {
  float: right;
  margin: 30px 30px 0 0;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
}
.login-container .img-content p {
  margin: 0;
  /*color: #fff;*/
  font-family: 'Source Sans Pro', sans-serif;
  text-align: center;
  font-size: 18px;
  margin-top: 100px;
  padding: 0 50px;
}
.login-container .error-text {
  margin: 0;
  color: tomato;
  font-family: 'Montserrat', sans-serif;
  margin-top: -20px;
}

/* /login page */

.upis-socials {
    width: 940px;
    padding: 10px;
    margin: 15px;
}

.btn-group {
  float: right !important;
}

.dropdown-menu {
  background-color: #f1f1f1;
  min-width: 180px;
  padding: 20px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-menu a {
  color: black;
  text-decoration: none;
  display: block;

    background-image: url('../img/pencil.svg');
    background-repeat: no-repeat;
    padding: 12px 20px 12px 40px;
}

.dropdown-menu a:hover {background-color: #ddd;}

.upis-card {
    flex-direction: row;
    box-shadow: 0 0 0.5rem 0 rgba(0,0,0,.15);
    transition: box-shadow .25s ease-in-out;
    margin-bottom: 20px;
    padding-left: 10px;
    padding-top: 20px;
    padding-right: 5px;
    padding-bottom: 10px;
    margin-right: 0px;
    clear: both;
}

.upis-card:hover {
    box-shadow: 0 0 0.8rem 0 rgba(0,0,0,.2);
}

.pr_green {
    color: green;
    font-size: 72px;
}

.pr_red {
    color: red;
    font-size: 72px;
}

.pr_yellow {
    color: yellow;
    font-size: 72px;
}

.pr_grey {
    color: darkslategray;
    font-size: 72px;
}

.emptyLogo {
    background-image: url('../img/empty-logo.png');
    width: 200px;
    height: 200px;
}

.emptyLogo-small {
    background-image: url('../img/empty-logo-small.png');
    width: 150px;
    height: 150px;
}

a.carrerLogo-small {
    display: block;
    width: 150px;
    height: 55px;
    margin-left: 10px;
}

a.carrerLogo-lt_LT {
    background-image: url('../img/KD_dalyvis_lt.png');
}
a.carrerLogo-en_GB {
    background-image: url('../img/KD_dalyvis_en.png');
}

a.summerLogo-lt_LT {
    background-image: url('../img/SD_dalyvis_lt.png');
}
a.summerLogo-en_GB {
    background-image: url('../img/SD_dalyvis_en.png');
}

.sharebar li {
  display: inline;
}

.sharebar li a {
  width: 40px;
}

.notice {
    background: #fff;
    border-left: 4px solid #fff;
    box-shadow: 1px 1px 1px 1px rgba(0,0,0,.1);
    margin: 5px 15px 2px;
    padding: 1px 12px;
}

.notice p {
    margin: 5px 15px 5px;
}

.notice-error {
    border-left-color: #dc3232;
}

.inputField-error label {
    color: #dc3232 !important;
}

.inputField-error input {
    border-bottom-color: #dc3232 !important;
}

.inputField-error button {
    border-bottom-color: #dc3232 !important;
}

.notice-warning {
    border-left-color: #ffba00;
}

.notice-success {
    border-left-color: #38b343;
}

#powerTip {
	cursor: default;
	background-color: #333;
	background-color: rgba(0, 0, 0, 0.8);
	border-radius: 6px;
	color: #fff;
	display: none;
	padding: 10px;
	position: absolute;
	white-space: nowrap;
	z-index: 2147483647;
}
#powerTip p {
    color: white;
}
#powerTip:before {
	content: "";
	position: absolute;
}
#powerTip.n:before, #powerTip.s:before {
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
	left: 50%;
	margin-left: -5px;
}
#powerTip.e:before, #powerTip.w:before {
	border-bottom: 5px solid transparent;
	border-top: 5px solid transparent;
	margin-top: -5px;
	top: 50%;
}
#powerTip.n:before {
	border-top: 10px solid #333;
	border-top: 10px solid rgba(0, 0, 0, 0.8);
	bottom: -10px;
}
#powerTip.e:before {
	border-right: 10px solid #333;
	border-right: 10px solid rgba(0, 0, 0, 0.8);
	left: -10px;
}
#powerTip.s:before {
	border-bottom: 10px solid #333;
	border-bottom: 10px solid rgba(0, 0, 0, 0.8);
	top: -10px;
}
#powerTip.w:before {
	border-left: 10px solid #333;
	border-left: 10px solid rgba(0, 0, 0, 0.8);
	right: -10px;
}
#powerTip.ne:before, #powerTip.se:before {
	border-right: 10px solid transparent;
	border-left: 0;
	left: 10px;
}
#powerTip.nw:before, #powerTip.sw:before {
	border-left: 10px solid transparent;
	border-right: 0;
	right: 10px;
}
#powerTip.ne:before, #powerTip.nw:before {
	border-top: 10px solid #333;
	border-top: 10px solid rgba(0, 0, 0, 0.8);
	bottom: -10px;
}
#powerTip.se:before, #powerTip.sw:before {
	border-bottom: 10px solid #333;
	border-bottom: 10px solid rgba(0, 0, 0, 0.8);
	top: -10px;
}
#powerTip.nw-alt:before, #powerTip.ne-alt:before,
#powerTip.sw-alt:before, #powerTip.se-alt:before {
	border-top: 10px solid #333;
	border-top: 10px solid rgba(0, 0, 0, 0.8);
	bottom: -10px;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	left: 10px;
}
#powerTip.ne-alt:before {
	left: auto;
	right: 10px;
}
#powerTip.sw-alt:before, #powerTip.se-alt:before {
	border-top: none;
	border-bottom: 10px solid #333;
	border-bottom: 10px solid rgba(0, 0, 0, 0.8);
	bottom: auto;
	top: -10px;
}
#powerTip.se-alt:before {
	left: auto;
	right: 10px;
}

.reveal_card {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  width: 90%;
  margin: 0 auto;
}

.reveal_card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.reveal_header {
  padding: 2px 16px;
}

.reveal_container {
  padding: 2px 16px;
}

.ui-widget {
    font-family: Arial,sans-serif !important;
    font-size: 16px !important;
}

.north {
    cursor: pointer;
}

.fRight {
    float: right;
}

label.internshipPlaceTotal {
    margin-right: 20px;
    padding-top: 0px !important;
    padding-left: 30px !important;
}

#advanced-search {
    color: #808080;
    border-color: #808080;
    margin-right: 10px;
}

#advanced-search:hover {
    color: #ffffff;
    border-color: #000000;
}

.bachlor_table_header div a {
    color: #000000;
}

.blue-nav-active a {
    background-color: #2f415f !important;
    color: #fff !important;
}

.yellow-nav-active a {
    background-color: #d9e02e !important;
    color: #fff !important;
}

.mega-menu {
    margin-top: 10px !important;
}

.row {
    margin-right: 0px !important;
    margin-left: 0px !important;
}

ul.right {
    margin-right: -13px !important;
}

.event-new-wrapper {
    margin-bottom: 30px !important;
}

#filter-row {
    margin-bottom: 25px;
}

.page-title {
    margin-top: 20px;
}

.col-sm-1 {
    white-space: nowrap;
}

iframe#description_ifr {
    height: 300px;
}

a.item-without-sub-menu.active {
    border-bottom: #000000 solid 3px;
}

p {
    margin-bottom: 5px;
}

.ui-accordion-content {
    text-align: justify;
}

.blog-table th {
    width: 125px;
}

.col-sm-6 h2 {
    margin-top: 0px;
}

button.ui-dialog-titlebar-close {
    background-image: url("../../../themes/upis/public/images/ui-icons.png");
    background-position: -96px -128px;
    border: 1px solid silver;
    border-radius: 3px;
}

.select-wrapper .dropdown-menu > li {
    padding-top: 5px;
    padding-bottom: 5px;
    line-height: 25px;
}

header .logo img {
    height: 106px !important;
}

header img.visible-sm {
    height: 95px !important;
}

header .nav li:last-child a {
    padding-right: 0px !important;
}

header .lang-switch {
    margin-top: 0px !important;
    padding-top: 0px !important;
}

.navbar-toggle {
    margin-top: 0px !important;
    margin-right: 15px !important;
}

header .top-nav {
    clear: right !important;
}

.header-padding {
    margin-top: -15px;
    min-height: 165px;  /*176*/
}

.centered-md {
    text-align: center;
}

.table-title-left {
    width: 110px;
    text-align: left;
    float: left;
    margin-left: 15px;
    font-family: "pf_dintext_promedium", sans-serif;
    font-size: 12px;
    line-height: 23px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

#image-preview {
    display: block;
}

#logo-menu {
    float: left;
    padding: 10px 0 0 0;
}

#logo-menu button {
    float: left;
    margin: 0 5px 0 0;
}

@media (max-width: 1200px) {
    #advanced-search {
        margin-right: 0px;
        margin-top: 10px;
        margin-bottom: 10px;
        width: 164px;
    }

    #newbachelor-button {
        width: 164px;
    }

    .header-padding {
        margin-top: -15px !important;
        min-height: 145px !important;
    }
}

@media (max-width: 992px) {
    header .top-nav {
        margin-top: 17px !important;
    }

    header .nav {
        width: 210px;
        margin-right: 15px !important;
    }

    #advanced-search {
        margin-right: 0px;
        margin-top: 10px;
    }

    .header-padding {
        margin-top: -15px !important;
        min-height: 60px !important;
    }

    .centered-md {
        text-align: left;
    }

}

@media (max-width: 768px) {
    header .logo img.logo-small {
        max-height: 80px !important;
    }
    header .top-nav {
        margin-top: 3px !important;
    }

    #advanced-search {
        margin-right: 10px;
        margin-top: 10px;
        margin-bottom: 10px;
        width: 165px;
    }

    #newbachelor-button {
        margin-top: 10px;
        width: 120px;
    }

    .header-padding {
        margin-top: -15px !important;
        min-height: 150px !important;
    }

    .centered-md {
        text-align: left;
    }

}

.upis-list-table .col-md-1 {
    /*white-space: nowrap;*/
    /*width: 9%;*/
}

.upis-list-table .col-md-2 {
    /*width: 17.66666667%;*/
}

.internationalInternships {
    display: inline;
    text-align: left;
    margin: 25px 0 0 25px;
    font-size: 20px;
}

.container {
    width: 100% !important;
}

.internship-erasmusBlock {
    background-color: #fcfbf8;
    padding: 5px 10px 5px 22px;
    border: 10px solid #f3f2ee;
}

.internship-erasmusBlock p {
    font-family: "pf_dintext_promedium", sans-serif;
    font-size: 16px !important;
    line-height: 23px;
    font-weight: normal;
    letter-spacing: 1.8px;
    color: #525252;
}

.internship-erasmusBlockList {
    clear: both;
    padding: 20px 15px 5px 15px;
    text-align: center;
}

.internship-erasmusBlockList p {
    display: inline;
}

table.clean-table li a {
    border: 0px;
}

.gallery {
    height: 100%;
    overflow: hidden;
}

figure.gallery-item .landscape {
}
figure.gallery-item {
    display: block;
    float: left;
    height: 100%;
    margin: 0px;
    padding: 10px;
}

.upis-company-panel-container p {
    margin: 1em 0;
}

.subscription-desc {
    padding-right: 20px;
    line-height: 44px;
}

.subscription-desc a {
    color: black;
}

.fLeft {
    float: left;
}

.careerDays {
    margin-top: 15px;
    text-align: center;
}

.careerDays a{
    display: block;
    width: 100%;
    text-align: center;
}

.careerDays img{
    display: inline;
}

.careerDaysBG {
    display: block;
    width: 100%;
    background-image: url("../img/kd_bg_2025.png");
    background-position: center;
    background-repeat: repeat-x;
}

.careerDaysBG2 {
    display: block;
}

@media (min-width: 768px) {
    .equal {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .equal {
    }
}

@media (min-width: 768px) {
    .mapContainer {
        min-height: 200px;
        padding: 0;
    }
}

@media (max-width: 767px) {
    .mapContainer {
        min-height: 200px;
        padding: 0;
    }
}

.fClear {
    clear: both;
}
