
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-size: 15px;
    line-height: 18px;
    color: var(--placeholder);
}

input::placeholder {
    overflow: visible;
}

::-moz-placeholder {
    font-size: 15px;
    line-height: 18px;
    color: var(--placeholder);
}

@font-face {
    font-family: "Helvetica Neue";
    src: url("/assets/fonts/HelveticaNeue\ Regular.ttf");
}

@font-face {
    font-family: "Helvetica Neue Medium";
    src: url("/assets/fonts/HelveticaNeue\ Medium.ttf");
}

@font-face {
    font-family: "Helvetica Neue Bold";
    src: url("/assets/fonts/HelveticaNeue\ Bold.ttf");
}

@keyframes shake {
    0%,
    100% {
      -webkit-transform: translate3d(0,0,0);
      transform: translate3d(0,0,0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
      -webkit-transform: translate3d(-1px,0,0);
      transform: translate3d(-1px,0,0);
    }
    20%,
    40%,
    60%,
    80% {
      -webkit-transform: translate3d(1px,0,0);
      transform: translate3d(1px,0,0);
    }
}

@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
 }

 @keyframes loader-spinner {
	0% { transform:rotate(0deg); }
	100% { transform:rotate(360deg); }
}

img {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
    outline: none;
}

:root {
    --site-backcolor: white;
    --font-color: #25283A;
    --font-color-light-shaded: rgba(11, 54, 83, 0.8);
    --font-color-shaded: rgba(11, 54, 83, 0.5);
    --color: #1B66D6;
    --color-shaded: rgba(27, 102, 214, 0.8);
    --color-trans: rgba(27, 102, 214, 0.2);
    --alt-color: #0B3653;
    --alt-dark-color: #25283A;
    --highlight-color: #3D7DDC;
    --active-color: #195FC2;
    --pressed-color: #195FC2;
    --input-border: rgba(11, 54, 83, 0.2);
    --modal-background: rgba(11, 54, 83, 0.3);
    --menu-text-color: rgba(11, 54, 83, 0.6);
    --menu-hover-color: rgba(11, 54, 83, 0.05);
    --menu-active-color: rgba(11, 54, 83, 0.8);
    --inactive-color: rgba(37, 40, 58, 0.8);
    --shaded-color: rgba(37, 40, 58, 0.6);
    --error-color: #E34444;
    --error-color-highlight: #E76060;
    --error-color-highlight-background: rgba(231, 96, 96, 0.15);
    --error-color-pressed: #C34246;;
    --error-color-pressed-background: rgba(195, 66, 70, 0.3);
    --panel-background: #F5F6F8;
    --placeholder: rgba(37, 40, 58, 0.7);
    --separator: rgba(11, 54, 83, 0.12);
    --inactive-globe-background-color: #E7EBEE;
    --inactive-globe-color: rgba(11, 54, 83, 0.5);
    --draft-color: rgba(11, 54, 83, 0.1);
}

html {
    background: var(--site-backcolor);
    font-family: "Helvetica Neue";
    color: var(--font-color);
}

input,
select,
textarea {
    background: var(--site-backcolor);
    border: 1px solid var(--input-border);
    box-sizing: border-box;
    border-radius: 5px;
    transition: 0.5s border-color;
    padding: 8px;
    color: var(--font-color);
    font-size: 15px;
}

textarea {
    font-family: Helvetica Neue;
}

input,
select {
    height: 40px;;
}

input:invalid,
select:invalid {
    box-shadow: none;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2212%22%20height%3D%228%22%20viewBox%3D%220%200%2012%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20opacity%3D%220.6%22%20d%3D%22M2.11973%201.29006L5.99973%205.17006L9.87973%201.29006C10.2697%200.900059%2010.8997%200.900059%2011.2897%201.29006C11.6797%201.68006%2011.6797%202.31006%2011.2897%202.70006L6.69973%207.29006C6.30973%207.68006%205.67973%207.68006%205.28973%207.29006L0.699727%202.70006C0.309727%202.31006%200.309727%201.68006%200.699727%201.29006C1.08973%200.910059%201.72973%200.900059%202.11973%201.29006Z%22%20fill%3D%22%230B3653%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
}
/*
select::-ms-expand {
    display: none;
}
*/
.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
    -webkit-animation: shake 1s;
    -moz-animation: shake 1s;
    animation: shake 1s;
  }

.error {
    border-color: var(--error-color);
    animation: shake 0.75s;
}

.err {
    margin-top: 8px;
    margin-bottom: 8px;
    color: var(--error-color);
}

.error:focus {
    border: 2px solid var(--error-color);
}

.button {
    display: grid;
    align-items: center;
    color: white;
    text-align: center;
    cursor: pointer;
    background: var(--color);
    border-radius: 5px;
    border-width: 0px;
    transition: 0.5s all;
    font-size: 15px;
    height: 40px;
    font-family: Helvetica Neue Medium;
}

.login-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: left;
    align-items: stretch;
}

.login-container .sidebar {
    color: var(--font-color);
    max-width: 520px;
    min-width: 400px;
    flex-basis: 32%;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.login-container > .sidebar > img.isotype {
    margin-top: 70px;
    margin-bottom: 40px;
    width: 54px;
    height: 54px;
    align-self: center;
}

.login-container .logo-content {
    background: linear-gradient(90deg, rgba(11, 54, 83, 0.95) 0%, rgba(11, 54, 83, 0.5) 100%), url("/assets/svg/back.svg");
    background-size: auto, cover;
    flex-basis: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    min-height: 100vh;
}

.login-container .logo-content img {
    width: 70%;
    max-height: 30%;
}

.login-h {
    padding: 0;
    display: flex;
    flex-direction: column;
    max-width: 320px;
    align-self: center;
    width: 100%;
    flex-grow: 1;
}

.login-h > * {
    text-align: center;
}

.login-container .title {
    font-style: normal;
    font-weight: bold;
    font-size: 40px;
    line-height: 34px;
    margin-bottom: 25px;
}

.login-container .subtitle {
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 60px;
}

.login-h .input-box,
.login-h .flex-box,
.standard-form .input-box,
.standard-form .flex-box {
    display: flex;
    flex-direction: column;
    position: relative;
}

input:focus,
select:focus,
textarea:focus {
    border: 2px solid var(--color);
}

input.login {
    width: 100%;
    height: 40px;
}

.sidebar .button {
    width: 100%;
}

.login-h .input-box input.login {
    margin-bottom: 25px;
}

.login-h .flex-box .button {
    margin-top: 15px;
}

.button:hover,
.button-icon:hover {
    background: var(--highlight-color);
}

.button:active,
.button-icon:active {
    background: var(--active-color);
}

a,
a:visited {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.01em;
    font-feature-settings: 'liga';
    text-decoration: none;
    color: var(--color);
    transition: 0.5s all;
}

a:hover {
    color: var(--highlight-color);
}

.input-box p {
    order: -1;
}

.input-box > p,
.input-box > .button_input p {
    text-align: left;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 14px;
    text-transform: capitalize;
    color: var(--inactive-color);
    padding-left: 8px;
    padding-bottom: 4px;
    transition: 0.5s all;
}

.input-box input:focus ~ p,
.input-box select:focus ~ p,
.input-box textarea:focus ~ p {
    color: var(--color);
}

.input-box input.error:focus ~ p,
.input-box select.error:focus ~ p {
    color: var(--error-color);
}

.input-box .date {
    background-image: url("/assets/svg/calendar-icon.svg"), url("/assets/svg/search-back.svg");
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) 50%, 100% 0;
    width: 100%;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button,
input.date::-webkit-inner-spin-button,
input.date::-webkit-clear-button {
    display: none;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input.date::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    color: transparent;
    background: transparent;
}

.input-box .height {
    background-image: url("/assets/svg/cm-icon.svg"), url("/assets/svg/search-back.svg");
    background-repeat: no-repeat;
    background-position: calc(100% - 12px) 50%, 100% 0;
}

.input-box .weight {
    background-image: url("/assets/svg/kg-icon.svg"), url("/assets/svg/search-back.svg");
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) 50%, 100% 0;
}

.login-h .sep {
    width: 100%;
    background-color: var(--input-border);
    height: 1px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.login-container .flex-box .hbox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.sidebar footer {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 14px;
    color: var(--shaded-color);
    margin-top: 16px;
}

.sidebar footer img {
    width: 14px;
    height: 14px;
    margin-right: 5px;
}

.login-h .hbox p {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    text-align: center;
    color: #000000;
    line-height: 19px;
    padding-right: 16px;
}

.login-h form {
    display: flex;
    flex-direction: column;
}

#login-box .flex-box > a {
    margin-top: 30px;
}

#login-box a,
#signup-box a,
#recovery-box a,
.panel-container .sidebar .item p,
.panel-head .user-settings p,
.panel-head .user-settings .menu .options ul li a {
    font-family: Helvetica Neue Medium;
}

#signup-box,
#recovery-box {
    display: none;
}

input[type=password] {
    position: relative;
}

.password_toggle {
    background-image: url("/assets/svg/visibility_on.svg");
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    user-select: none;
    right: 8px;
    margin-top: -14px;
    cursor: pointer;
}

.form-err {
    display: none;
    font-size: 12px;
    color: var(--error-color);
}

.form-err.error {
    display: block;
    animation: fadeIn 0.75s;
}

#password_done {
    display: none;
}

.panel-head {
    display: flex;
    flex-direction: row;
    height: 70px;
    flex-wrap: nowrap;
    box-shadow: 0px 3px 20px var(--draft-color);
    z-index: 1000;
    position: relative;
}

.panel-head .user-settings {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    margin-right: 34px;
    cursor: pointer;
    font-family: Helvetica Neue;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
}

.panel-head .user-settings p {
    margin-right: 10px;
    transition: 0.5s all;
}

.panel-head .user-settings:hover p {
    color: var(--color);
}

.panel-head .user-settings .avatar {
    width: 38px;
    height: 38px;
    background-size: 38px 38px;
    margin-right: 12px;
    border-radius: 38px;
}

.panel-head .middle {
    flex-grow: 1;
}

.panel-head img.logo {
    margin-left: 25px;
    width: 106px;
    height: 70px;
}

.panel-container {
    display: flex;
    flex-direction: row;
    min-height: calc(100vh - 70px);
}

.panel-container .sidebar {
    min-width: 250px;
    display: flex;
    flex-direction: column;
    background-color: var(--site-backcolor);
    position: relative;
}

.panel-container .sidebar .item:first-of-type {
    margin-top: 60px;
}

.panel-container .sidebar .item {
    padding-left: 28px;
    min-height: 50px;
    font-family: Helvetica Neue;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    display: flex;
    align-items: center;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    color: var(--menu-text-color);
    cursor: pointer;
    transition: 0.25s all;
}

.panel-container .sidebar .item.active {
    color: var(--color);
}

.panel-container .sidebar .item.active {
    background-image: url("/assets/svg/menu-selected.svg");
    background-position: 0px center;
    background-repeat: no-repeat;
}

.panel-container .sidebar .item p {
    margin-left: 18px;
}

.panel-container .sidebar .sep {
    flex-grow: 1;
}

.panel-container .sidebar .item:hover {
    color: var(--highlight-color);
    padding-left: 38px;
    background-color: var(--menu-hover-color);
}

.panel-container .sidebar .item:hover svg path:first-of-type,
.panel-container .sidebar .item.active svg path:first-of-type {
    fill: var(--color);
}

.panel-container .sidebar .item.active svg path:first-of-type {
    opacity: 1;
}

.panel-container .panel-content {
    display: flex;
    flex-direction: column;
    background-color: var(--panel-background);
    min-height: calc( 100vh - 70px );
    flex-basis: 100%;
}

.panel-head .user-settings:hover .menu {
	visibility: visible;
	opacity: 1;
	top: 70px;
    display: table;
}

.panel-head .user-settings .menu {
	position: absolute;
	width: auto;
	min-width: 220px;
	min-height: 100px;
	top: 60px;
	right: 16px;
	background-color: var(--site-backcolor);
	box-shadow: 0 3px 5px rgba(0,0,0,.2);
	display: table;
	visibility: hidden;
	opacity: 0;
	transition: all 0.15s ease-in-out 0s;
	padding: 8px;
    box-sizing: border-box;
}

.panel-head .user-settings .menu .avatar {
	width: auto;
	display: table-cell;
	vertical-align: middle;
}

.panel-head .user-settings .menu .avatar img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
}

.panel-head .user-settings .menu .options {
	display: table-cell;
	width: auto;
	padding-left: 8px;
}

.panel-head .user-settings .menu .options ul {
	float: left;
}

.panel-head .user-settings .menu .options ul, .panel-head .user-settings .menu .options ul li a{
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
	text-indent: 0;
	z-index: 99999;
	font-size: 12px;
	line-height: 33px;
}

.panel-head .user-settings .menu .options ul li a span {
	font-size: 10px;
	clear: both;
	color: #CCC;
	display: table;
	line-height: 0px;
	white-space: nowrap;
}

.button-border {
    font-family: Helvetica Neue Medium;
    background: transparent;
    border: 2px solid #1B66D6;
    box-sizing: border-box;
    border-radius: 5px;
    color: var(--color);
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-feature-settings: 'liga' off;
    cursor: pointer;
    transition: 0.25s all;
}

.button-border.disabled {
    color: var(--inactive-globe-color);
    border-color: var(--inactive-globe-color);
}

.button-border.disabled:hover {
    background-color: transparent;
}

.button.disabled {
    color: var(--inactive-globe-color);
    background-color: var(--inactive-globe-background-color);
}

div.button {
    padding-left: 15px;
    padding-right: 15px;
}

.button-border:hover {
    background: rgba(27, 102, 214, 0.15);
}

.button-border:active {
    background: rgba(27, 102, 214, 0.3);
}

.panel-content {
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 50px;
}

.panel-section-head .title {
    font-style: normal;
    font-weight: bold;
    font-size: 30px;
    line-height: 34px;
    color: var(--font-color);
    flex-grow: 1;
    margin-right: 32px;
}

.panel-section-head {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.button-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    cursor: pointer;
    background: var(--color);
    border-radius: 5px;
    border-width: 0px;
    transition: 0.5s all;
    font-size: 15px;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: nowrap;
    min-width: min-content;
    min-height: 40px;
}

.button-icon img {
    margin-right: 8px;
}

.button-icon p {
    user-select: none;
    color: white;
    width: 100%;
}

.button-border-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    cursor: pointer;
    border-color: var(--color);
    border-radius: 5px;
    border-width: 2px;
    transition: 0.5s all;
    font-size: 15px;
    padding-left: 15px;
    padding-right: 15px;
    border-style: solid;
    height: 40px;
    color: var(--color);
    flex-wrap: nowrap;
    min-width: min-content;
}

.button-border-icon.disabled {
    border-color: var(--inactive-globe-color);
}

.button-icon.disabled {
    background-color: var(--inactive-globe-background-color);
}

.button-border-icon.disabled p,
.button-border-icon.disabled svg path,
.button-icon.disabled p,
.button-icon.disabled svg path {
    color: var(--inactive-globe-color);
    fill: var(--inactive-globe-color);
}

.panel-section-container {
    display: flex;
    flex: 1 1;
}

.panel-section-container .view-cont {
    display: flex;
    flex-direction: column;
    flex: 1 1;
}

.button-border-icon img {
    margin-right: 8px;
}

.button-border-icon p {
    user-select: none;
    color: var(--color);
    width: 100%;
}

.button-border-icon svg path {
    fill: var(--color);
    opacity: 1;
}

.panel-section-head .vsep {
    background: var(--separator);
    width: 1px;
    height: 100%;
    margin-right: 25px;
}

.panel-section-head form {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.panel-section-head .search-bar {
    margin-right: 15px;
    background-image: url("/assets/svg/search.svg"), url("/assets/svg/search-back.svg");
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) calc(50% + 2px), 100% 0;
    flex-basis: 33%;
    margin-left: 32px;
    max-width: 383px;
    font-size: 15px;
    flex-grow: 1;
}

.button-border.red {
    color: var(--error-color);
    background-color: transparent;
    border-color: var(--error-color);
}

.button-border.red:hover {
    background-color: var(--error-color-highlight-background);
    border-color: var(--error-color-highlight);
}

.button-border.red:active {
    background-color: var(--error-color-pressed-background);
    border-color: var(--error-color-pressed);
}

.studies-head .button-border {
    margin-right: 25px;
}

.panel-container .panel-content .sep {
    height: 1px;
    width: 100%;
    background: var(--separator);
    margin-top: 20px;
    margin-bottom: 30px;
    max-width: 100vw;
}

.panel-section-container table {
    width: 100%;
}

.panel-section-container table th,
.panel-section-container table td,
.panel-section-container table td a {
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
}

.panel-section-container table th,
.panel-section-container table td {
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: var(--site-backcolor);
    text-align: left;
    padding-left: 11px;
    padding-right: 11px;
}

.panel-section-container table th:nth-child(2),
.panel-section-container table td:nth-child(2),
.panel-section-container table th:nth-child(3),
.panel-section-container table td:nth-child(3) {
    padding-left: 11px;
    text-align: right;
    padding-right: 20px;
}

.panel-section-container table th:nth-child(4),
.panel-section-container table td:nth-child(4) {
    width: 165px;
}

.panel-section-container table th:nth-child(5),
.panel-section-container table td:nth-child(5) {
    width: 125px;
}

.panel-section-container table tr th:last-of-type,
.panel-section-container table tr td:last-of-type {
    text-align: center;
}

.panel-section-container table th {
    color: var(--shaded-color);
}

.panel-section-container table th:first-of-type {
    border-top-left-radius: 5px;
}

.panel-section-container table th:last-of-type {
    border-top-right-radius: 5px;
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: solid 2px transparent;
	border-top-color: var(--color);
	border-left-color: var(--color);
	border-radius: 40px;
    animation: loader-spinner 400ms linear infinite;
    margin: auto;
}

.button-spinner {
	width: 24px;
	height: 24px;
	border: solid 2px transparent;
	border-top-color: white;
	border-left-color: white;
	border-radius: 24px;
    animation: loader-spinner 400ms linear infinite;
}

.status-badge {
    width: 142px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    justify-content: left;
    align-items: center;
}

.status-badge .circle {
    margin-left: 10px;
    margin-right: 10px;
}

.status-badge .circle {
    width: 12px;
    height: 12px;
    border-radius: 12px;
}

.status-badge.draft {
    background: var(--draft-color);
}

.status-badge.processing {
    background: rgba(243, 222, 31, 0.2);
}

.status-badge.done {
    background: rgba(85, 213, 167, 0.2);
}

.status-badge.draft .circle {
    background: #0B3653;
}

.status-badge.processing .circle {
    background: #F3DE1F;
}

.status-badge.done .circle {
    background: #55D5A7;
}

.view-cont {
    position: relative;
}

.panel-section-route {
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.1px;
    color: rgba(11, 54, 83, 0.6);
    display: flex;
    flex-direction: row;
    position: absolute;
    top: -22px;
}

.panel-section-route p.current {
    color: var(--font-color);
    font-weight: 600;
}

.panel-study-new {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.panel-study-new .left {
    min-width: 280px;
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    padding-right: 15px;
    margin-bottom: 16px;
}

.panel-study-new .left .step {
    display: flex;
    margin-bottom: 8px;
    margin-top: 8px;
}

.panel-study-new .left > .step.done > .step-num {
    background-color: #55D5A7;
    color: white;
}

.panel-study-new .left > .step.done > .step-desc p,
.panel-study-new .left > .step.progress > .step-desc p {
    color: var(--font-color);
}

.panel-study-new .left > .step.done > .step-desc span,
.panel-study-new .left > .step.progress > .step-desc span {
    color: var(--font-color-light-shaded);
}

.panel-study-new .left > .step.progress > .step-num {
    background-color: #F3DE1F;
    color: white;
}

.panel-study-new .left > .step > .step-num {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background-color: var(--inactive-globe-background-color);
    display: flex;
    justify-content: center;
    color: var(--inactive-globe-color);
    align-items: center;
    margin-right: 20px;
    font-size: 20px;
    font-weight: bolder;
}

.panel-study-new .left > .step > .step-desc {
    flex-grow: 1;
}

.panel-study-new .left > .step > .step-desc p {
    font-size: 16px;
    font-weight: bold;
    color: var(--font-color-shaded);
}

.panel-study-new .left > .step > .step-desc span {
    font-size: 14px;
    color: var(--font-color-shaded);
}

.panel-study-new .left > .step.active > .step-num {
    background-color: var(--color);
    color: white;
}

.panel-study-new .left > .step.active > .step-desc p {
    color: var(--color);
}

.panel-study-new .left > .step.active > .step-desc span {
    color: var(--color-shaded);
}

.panel-study-new .left .globe-sep {
    height: 32px;
    width: 1px;
    background-color: var(--separator);
    margin-left: 20px;
}

.panel-study-new .middle {
    background-color: var(--site-backcolor);
    border-radius: 5px;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 30px;
    max-width: 530px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    flex-basis: 50%;
}

.panel-study-new .middle h4 {
    margin-bottom: 30px;
}

.panel-study-new .middle p {
    font-size: 14px;
}

.panel-study-new .middle span {
    font-size: 14px;
    padding-top: 20px;
    color: var(--shaded-color);
    display: block;
    padding-bottom: 20px;
}

span.post-input-err,
.panel-study-new .middle span.post-input-err {
    padding: 0px 10px 0px;
    font-size: 12px;
    color: var(--error-color)
}

.panel-study-new .right {
    display: flex;
    align-items: flex-end;
    padding-left: 30px;
    margin-bottom: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-end;
}

.panel-study-new .right > :first-child {
    margin-right: 20px;
}

.panel-study-new .right #previous-step svg {
    margin-right: 8px;
}

.panel-study-new .right #next-step svg {
    margin-left: 9px;
}

#next-step.button-icon {
    height: 40px;
    margin-top: 12px;
    position: relative;
}

#next-step > .button-spinner {
    right: 7%;
    position: absolute;
    display: none;
}

.uploading-container,
.uploaded-container {
    display: flex;
    flex-direction: column;
}

.panel-study-new .middle .uploading-container h4,
.panel-study-new .middle .uploaded-container h4 {
    color: var(--color);
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 20px;
}

.uploading-container,
.uploaded-container {
    display: none;
}

.uploading-container p,
.uploaded-container p {
    font-size: 12px;
    line-height: 18px;
}

.button-border.compact {
    width: min-content;
}

#cancel_upload {
    margin-top: 16px;
}

.progressbar {
    background-color: var(--color-trans);
    width: 100%;
    height: 10px;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
}

.progressbar .current_progress {
    width: 0%;
    height: 100%;
    background-color: var(--color);
    border-radius: 20px;
}

.progressbar .current_progress.error {
    width: 0%;
    height: 100%;
    background-color: var(--error-color);
    border-radius: 20px;
}

.standard-form .form-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.standard-form .form-row .input-box {
    width: calc(50% - 15px);
}

.standard-form .form-row .input-box:first-of-type {
    margin-right: 30px;
}

.form-row-full {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.form-row-full .input-box,
.form-row-full .input-box input,
.form-row-full .input-box select {
    width: 100%;
}

input[type="radio"] {
    display:none;
}

input[type="radio"] + label {
    line-height: 18px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-feature-settings: 'liga' off;
    color: var(--menu-text-color);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    border: solid 2px var(--menu-text-color);
    border-radius: 5px;
    height: 40px;
    padding: 12px;
    cursor:pointer;
    transition: 0.5s all;
    min-width: min-content;
}

input[type="radio"]:checked + label {
    color: var(--color);
    border-color: var(--color);
}

input[type="radio"] + label span {
    width:24px;
    height:24px;
    padding-bottom: 0px!important;
    background-image: url("/assets/svg/radio-off.svg");
}

input[type="radio"]:checked + label span {
    background-image: url("/assets/svg/radio-on.svg");
}

input[type="checkbox"] {
    display:none;
}

input[type="checkbox"] + label {
    line-height: 18px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-feature-settings: 'liga' off;
    color: var(--menu-text-color);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    border: solid 2px var(--menu-text-color);
    border-radius: 5px;
    height: 40px;
    padding: 12px;
    cursor:pointer;
    transition: 0.5s all;
    min-width: min-content;
}

input[type="checkbox"]:checked:indeterminate + label {
    color: var(--color-shaded);
    border-color: var(--color-shaded);
}

input[type="checkbox"]:checked + label {
    color: var(--color);
    border-color: var(--color);
}

input[type="checkbox"] + label span {
    width:18px;
    height:18px;
    padding-bottom: 0px!important;
    padding-top: 0px!important;
    margin-right: 8px;
    background-image: url("/assets/svg/checkbox-off.svg");
}

input[type="checkbox"]:checked + label span {
    background-image: url("/assets/svg/checkbox-on.svg");
}

input[type="checkbox"]:checked:indeterminate + label span {
    background-image: url("/assets/svg/checkbox-off-checked.svg");
}

.modal-dialog,
.confirm {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--modal-background);
    z-index: 1000;
    display: none;
    animation: fadeIn 0.5s;
}

.modal-dialog .dialog {
    background-color: white;
    min-width: 370px;
    max-width: 370px;
    box-shadow: 0px 5px 30px rgba(37, 40, 58, 0.1);
    border-radius: 5px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.5s all;
    animation: fadeIn 0.5s;
}

.modal-dialog .dialog .bigimg {
	margin-top: 45px;
	margin-bottom: 45px;
}

.modal-dialog .dialog .dialog_success {
    display: flex;
    flex-direction: column;
    align-items: center;
    display: none;
}

.modal-dialog .dialog .dialog_progress {
    display: flex;
    flex-direction: column;
    justify-content: left;
    display: none;
}

.modal-dialog .dialog .dialog_progress h3,
.modal-dialog .dialog .dialog_progress p {
    margin-bottom: 25px;
}

.sheet {
	background-color: white;
	padding: 50px;
	border-radius: 5px;
	width: 90%;
	max-width: 740px;
	align-self: center;
	margin-bottom: 16px;
}

.sheet > .title {
	display: flex;
	margin-bottom: 50px;
}

.sheet > .title > h4 {
	font-style: normal;
	font-weight: bold;
	font-size: 28px;
	line-height: 34px;
	color: var(--color);
}

.sheet > .title > span {
	flex-grow: 1;
	text-align: right;
	padding-top: 10px;
}

.sheet > .row {
	display: flex;
	margin-top: 30px;
}

.sheet > .row > .name {
	color: var(--inactive-color);
}

.sheet > .row > .value {
    font-family: Helvetica Neue Medium;
	color: var(--font-color);
	margin-left: 10px;
}

.sheet > .inv-sep {
	margin-bottom: 40px;
}

input#upload_3do,
input#download_3do,
input#download_img,
input#download_study,
input#upload_img,
input#view_3d_model,
#save_draft {
    margin-left: 25px;
}


input#delete_3do,
input#delete_pdf,
input#delete_img,
input#delete_study {
    margin-left: 8px;
}


.confirm .box {
    background-color: white;
    min-width: 370px;
    max-width: 370px;
    box-shadow: 0px 5px 30px rgba(37, 40, 58, 0.1);
    border-radius: 5px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: left;
    transition: 0.5s all;
    animation: fadeIn 0.5s;
}

.confirm .box .title {
    font-family: Helvetica Neue;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.01em;
    margin-bottom: 25px;
}

.confirm .box .subtitle {
    margin-bottom: 50px;
}

.confirm .box .btn-box {
    display: flex;
    width: 100%;
    color: var(--color);
    justify-content: right;
}

.confirm .box .btn-box .btn {
    cursor: pointer;
    font-family: Helvetica Neue Medium;
    font-style: normal;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.01em;
    font-feature-settings: 'liga' off;
}

.confirm .box .btn-box .btn:last-child {
    margin-left: 54px;
}

.confirm .box .btn-box .btn.js-positive.alert {
    color: var(--error-color);
}

#step-counter-1 > .step-num::after {
    content: "1";
}

#step-counter-2 > .step-num::after {
    content: "2";
}

#step-counter-3 > .step-num::after {
    content: "3";
}

#step-counter-1.step.done > .step-num::after,
#step-counter-2.step.done > .step-num::after,
#step-counter-3.step.done > .step-num::after,
#step-counter-4.step.done > .step-num::after {
    content: url('data:image/svg+xml;utf8,<svg width="18" height="13" viewBox="0 0 18 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.00012 10.1999L2.50012 6.69995C2.11012 6.30995 1.49012 6.30995 1.10012 6.69995C0.710117 7.08995 0.710117 7.70995 1.10012 8.09995L5.29012 12.2899C5.68012 12.6799 6.31012 12.6799 6.70012 12.2899L17.3001 1.69995C17.6901 1.30995 17.6901 0.689946 17.3001 0.299946C16.9101 -0.0900537 16.2901 -0.0900537 15.9001 0.299946L6.00012 10.1999Z" fill="white"/></svg>');
}

.patient_delete {
    cursor: pointer;
}

table tr td.download svg:not(.disabled) path:first-of-type {
    transition: all 0.25s;
}

table tr td.download svg:not(.disabled):hover path:first-of-type {
    fill: var(--color);
    fill-opacity: 1;
}

.panel-content table {
    margin-bottom: 16px;
}

.pagination {
    display: flex;
    justify-content: right;
    margin-bottom: 16px;
}

.pagination a {
    padding: 8px;
    min-width: 32px;
    color: white;
    background-color: var(--color);
    margin-left: 4px;
    text-align: center;
    font-family: Helvetica Neue Medium;
    border-radius: 5px;
}

.pagination a.current {
    background-color: var(--active-color);
}

.pagination a:hover {
    background-color: var(--highlight-color);
}

@media screen and (max-width: 1200px) {
    .standard-form .form-row {
        margin-bottom: 0px;
    }

    .standard-form .form-row .input-box {
        width: 100%;
        margin-bottom: 30px;
    }

    .standard-form .form-row .input-box:first-of-type {
        margin-right: 0px;
    }

    .study-head input {
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 600px) {
    .login-container .logo-content.logo-content {
        display: none;
    }

    .login-container .sidebar.sidebar {
        width: 100%;
        min-width: 100%;
        min-height: 100vh;
        padding-left: 10%;
        padding-right: 10%;
    }

    .flex-box .hbox p {
        padding-right: 0px;
        width: 100%;
    }

    .login-h .flex-box > * {
        align-self: center;
    }

    .panel-content {
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 16px;
    }

    .panel-head {
        flex-wrap: wrap;
    }

    .panel-container .sidebar {
        flex-direction: column;
    }

    .panel-container .sidebar a.item {
        padding-right: 16px;
        padding-left: 16px;
    }

    .panel-container .panel-section-head,
    .panel-container .panel-section-head form {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .panel-container .panel-section-head form {
        margin-top: 16px;
    }

    .panel-container .panel-section-head .button-icon {
        min-height: 40px;
    }

    .panel-container .panel-section-head .search-button,
    .panel-container .panel-section-head .button-icon,
    .panel-container .panel-section-head .button {
        margin-top: 24px;
        max-width: 100vw;
    }

    .studies-head .button-border,
    .panel-section-head .search-bar {
        margin-right: 0px;
    }

    .panel-section-container table th:nth-child(2), .panel-section-container table td:nth-child(2),
    .panel-section-container table th:nth-child(3), .panel-section-container table td:nth-child(3),
    .panel-section-container table th:nth-child(4), .panel-section-container table td:nth-child(4),
    .panel-section-container table th:nth-child(6), .panel-section-container table td:nth-child(6){
        display: none;
    }

    .panel-section-head .vsep {
        display: none;
    }

    .panel-section-head .search-bar {
        margin-left: 0px;
    }

    .sidebar footer {
        display: none;
    }

    .panel-container {
        flex-direction: column;
    }

    .panel-container .sidebar .item:first-of-type {
        margin-top: 0px;
    }

    .panel-container .panel-content {
        min-height: calc( 100vh - 120px );
    }

    .panel-study-new {
        flex-direction: column;
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: auto;
        flex-wrap: nowrap;
    }

    .panel-section-route {
        margin-top: 16px;
    }

    .panel-section-head .title {
        margin-top: 18px;
        margin-bottom: 12px;
    }

    .panel-section-head .button-border,
    .study-head .button-border:not(:last-of-type) {
        margin-right: 8px;
    }

    .study-head .button-border:not(:last-of-type) {
        margin-bottom: 12px;
    }

    .panel-study-new .right {
        flex-direction: column;
        align-items: center;
        align-content: center;
        padding-left: 0px;
        width: 100%;
    }

    .panel-study-new #previous-step,
    .panel-study-new #next-step {
        margin-right: 8px;
        margin-bottom: 8px;
        width: 100%;
    }

    input#upload_3do,
    input#download_3do,
    input#download_img,
    input#download_study,
    input#upload_img,
    input#view_3d_model,
    .panel-section-head .button,
    #save_draft,
    .study-head .button:not(:last-of-type) {
        margin-left: 0px;
        margin-bottom: 12px;
    }

    .panel-section-head .button-border {
        width: 100%;
    }

    .panel-section-head .button-border,
    .study-head .button-border:not(:last-of-type) {
        margin-right: 0px;
    }

    .modal-dialog .dialog,
    .confirm .box {
        min-width: auto;
        max-width: 100%;
    }

    #form_login:last-child {
        margin-bottom: 30px;
    }
}









body.landing {
    margin: 0 auto;
}

.landing-head {
    display: flex;
    flex-direction: row;
    height: 80px;
    flex-wrap: nowrap;
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 94px;
    padding-right: 94px;
    margin: 0 auto;
}

.landing-head > .middle {
    flex-grow: 1;
}

.landing-head > .logo {
    width: 136px;
    height: auto;
}

.landing-head > a.link {
    font-family: Helvetica Neue Medium;
    font-size: 15px;
    line-height: 18px;
    color: var(--menu-text-color);
    margin-right: 55px;
    align-self: center;
}

.landing-head .button-border {
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 10px;
    padding-bottom: 8px;
    margin-right: 30px;
    margin-left: 30px;
}

.landing-head > a:hover {
    color: var(--menu-active-color);
}

.landing-content {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    position: relative;
}

.landing img.vibration {
    position: absolute;
    right: 0;
    top: 100px;
}

.landing-content .button {
    font-family: Helvetica Neue Medium;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-feature-settings: 'liga' off;
}

.landing-content > .top {
    padding-top: 100px;
}

.landing-content > .top > .title {
    width: 50%;
}

.landing-content > .top > .title > p {
    font-family: Helvetica Neue Bold;
    font-size: 85px;
    line-height: 104px;
    display: flex;
    align-items: center;
    color: var(--font-color);
    padding-left: 93px;
}

.landing-content > .top > .title > span {
    font-family: Helvetica Neue;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    align-items: center;
    letter-spacing: 0.01em;
    color: var(--font-color);
    padding-left: 93px;
    padding-top: 24px;
}

.landing-content > .section {
    display: flex;
    flex-direction: column;
    margin-top: 100px;
    padding-left: 93px;
}

.landing-content > .section.grey {
    background-color: #F5F6F8;
    padding-top: 80px;
    padding-bottom: 125px;
}

.landing-content > .section > .title {
    display: flex;
    width: 100%;
    font-family: Helvetica Neue Medium;
    font-size: 25px;
    color: var(--color);
    align-items: center;
}

.landing-content > .section > .title > .line {
    width: 40px;
    height: 2px;
    border: 2px solid var(--color);
    margin-left: 20px;
}

.landing-content > .section > .content {
    margin-top: 80px;
    display: flex;
    flex-direction: row;
}

.landing-content > .section > .content.left {
    margin-top: 150px;
}

.landing-content > .section > .content   .photo {
    width: 680px;
    height: 453px;
    background-color: #c4c4c4;
    flex-grow: 1;
}

.landing-content > .section > .content > .textbox {
    display: flex;
    flex-direction: column;
    padding-left: 100px;
    justify-content: center;
    min-width: 500px;
    padding-right: 93px;
}

.landing-content > .section > .content > .textbox > * {
    max-width: 500px;
}

.landing-content > .section > .content.left > .textbox {
    padding-left: 0px;
    padding-right: 100px;
}

.landing-content > .section > .content > .textbox > .title {
    font-family: Helvetica Neue Bold;
    font-size: 45px;
    color: var(--font-color);
    width: 100%;
}

.landing-content > .section > .content > .textbox > .desc {
    font-family: Helvetica Neue;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.01em;
    width: 100%;
    margin-top: 20px;
}

.landing-content > .section > .content > .photo.ffr {
    background-color: white;
    background-image: url("/assets/images/FFR_homepage_visualization.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.landing-content > .section > .content   .photo.ct {
    background-color: transparent;
    background-image: url("/assets/images/a_velocity.0015.png");
    background-size: contain, auto;
    background-repeat: no-repeat;
    background-position: 100% 0%;
    position: relative;
    height: 420px;
}

.landing-content .col_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}

.landing-content .col_right img:first-of-type {
	width: 100%;
}

.landing-content .content_cont {
    display: flex;
    flex-direction: column;
    margin-top: 138px;
    margin-bottom: 100px;
    background-image: url('/assets/images/texture2.png');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: left top;
    min-height: 400px;
    align-items: center;
}

.landing-content .content_cont > .ready {
    font-family: Helvetica Neue Bold;
    font-size: 45px;
    line-height: 55px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--font-color);
    max-width: 514px;
    margin-bottom: 30px;
    margin-top: 132px;
}

.landing-content .content_cont > .signtxt {
    font-family: Helvetica Neue Medium;
    font-size: 25px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--font-color);
    margin-bottom: 46px;
}

.landing-content .section.grey .title {
    margin-bottom: 100px;
}

.landing-content .experts_row {
    display: flex;
    flex-direction: row;
    padding-right: 93px;
    justify-content: space-evenly;
}

.landing-content .experts_row:last-child {
    margin-top: 30px;
}

.landing-content .experts_row .expert {
    display: flex;
    flex-direction: column;
    width: 280px;
    align-items: center;
}

.landing-content .experts_row .expert .photo {
    width: 240px;
    height: 240px;
    border-radius: 100%;
    background-color: #C4C4C4;
    margin-bottom: 30px;
}

.landing-content .experts_row .expert .name,
.landing-content .experts_row .expert .name a {
    font-family: Helvetica Neue Medium;
    font-size: 30px;
    line-height: 37px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--font-color);
    margin-bottom: 15px;
}

.landing-content .experts_row .expert .title {
    font-family: Helvetica Neue;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--font-color);
    opacity: 0.8;
    margin-bottom: 10px;
}

.landing-content .experts_row .expert .desc {
    font-family: Helvetica Neue;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    letter-spacing: 0.01em;
    color: var(--font-color);
}

.landing-content .contact_cont {
    display: flex;
    flex-direction: row;
    margin-top: 150px;
    margin-bottom: 225px;
}

.landing-content .contact_cont .left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.landing-content .contact_cont .left .title {
    font-family: Helvetica Neue Bold;
    font-size: 45px;
    line-height: 55px;
    color: var(--font-color);
    margin-bottom: 35px;
    max-width: 465px;
}

.landing-content .contact_cont .left .desc,
.landing-content .thanks {
    font-family: Helvetica Neue;
    font-size: 25px;
    line-height: 30px;
    letter-spacing: 0.01em;
    color: var(--font-color);
    max-width: 465px;
}

.landing-content .contact_cont .left .desc a {
    font-size: 23px;
}

.landing-content .thanks {
    margin-top: 60px;
    text-align: center;
}

.landing-content .contact_cont .input-box {
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 500px;
}

.landing-content .contact_cont .input-box {
    margin-bottom: 30px;
}

.landing-content .contact_cont .left,
.landing-content .contact_cont .right {
    width: 50%;
}

.landing-content .contact_cont .right {
    padding-right: 93px;
}

.landing-content .contact_cont .right input[type=button] {
    min-width: 107px;
}

.landing-content > .section.blue {
    background-color: var(--color);
    color: white;
    padding-bottom: 70px;
    align-items: center;
}

.landing-content .social_title {
    font-family: Helvetica Neue Bold;
    font-size: 45px;
    line-height: 55px;;
    text-align: center;
    margin-top: 100px;
}

.landing-content .social_subscribe {
    font-family: Helvetica Neue Medium;
    font-size: 25px;
    line-height: 31px;
    text-align: center;
    color: white;
    margin-top: 55px;
}

.landing-content .input-box .subscribe {
    background-color: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.8);
}

.landing-content .input-box > .button_input ~ p {
    color: white;
    opacity: 0.9;
}

.landing-content .input-box > .button_input input.subscribe:focus ~ p {
    opacity: 1;
}

.landing-content .input-box input.subscribe {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-right-color: transparent;
}

.landing-content .input-box {
    display: flex;
    flex-direction: column;
    position: relative;
}

.landing-content .social_icons {
    display: flex;
    flex-direction: row;
    position: relative;
}

.landing-content .input-box .button {
    border: solid 1px rgba(255, 255, 255, 0.8);
    background-color: white;
    color: var(--color);
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    font-family: Helvetica Neue Medium;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-feature-settings: 'liga' off;
}

.landing-content .input-box .button:hover {
    color: var(--color-shaded);
}

.landing-content .button_input {
    display: flex;
    flex-direction: row;
    position: relative;
}

.landing-content .section.blue .input-box {
    margin-top: 30px;
}

.landing-content .social_icons {
    margin-top: 30px;
}

.landing-content .social_icons a:first-of-type {
    margin-right: 30px;
}

.landing-content .social_icons svg path,
.landing-content .social_icons svg rect {
    transition: all 0.5s;
}

.landing-content .social_icons svg:hover path {
    fill: var(--color);
}

.landing-content .social_icons svg:hover rect {
    fill: white;
}

.landing-content .section.green {
    background-color: var(--alt-color);
    margin-top: 0px;
    display: flex;
    flex-direction: row;
    padding-top: 38px;
    padding-bottom: 38px;
    justify-content: center;
    background-image: url("/assets/svg/isologotype-small.svg");
    background-repeat: no-repeat;
    background-size: 178px;
    background-origin: content-box;
    min-height: 52px;
}

.landing-content .section.green img:first-child {
    width: 178px;
    height: auto;
}

.landing-content .section.green .sections {
    display: flex;
    flex-direction: row;
    min-height: 52px;
}

.landing-content .section.green .sections a {
    font-family: Helvetica Neue Medium;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    color: #FFFFFF;
    opacity: 0.6;
    align-self: center;
}

.landing-content .section.green .sections a:hover {
    opacity: 0.8;
}

.landing-content .section.green .sections a:first-of-type {
    margin-right: 50px;
}

.landing-content .section.green .sections a:last-of-type {
    margin-left: 50px;
}

.landing-content .section.footer {
    margin-top: 0px;
    background-color: var(--alt-dark-color);
    padding-top: 23px;
    padding-bottom: 23px;
    font-size: 12px;
    line-height: 14px;
    color: rgba(255, 255, 255, 0.6);
    align-items: center;
}

.landing-content .experts_row .expert .photo {
    background-repeat: no-repeat;
    background-size: cover;
}

.landing-content .experts_row .expert .photo.gon {
    background-image: url("/assets/images/flouit_ares.jpeg?v=2");
}

.landing-content .experts_row .expert .photo.carlos {
    background-image: url("/assets/images/flouit_bulant.jpeg");
}

.landing-content .experts_row .expert .photo.pablo {
    background-image: url("/assets/images/flouit_blanco.jpeg");
}

.landing-content .experts_row .expert .photo.pedro {
    background-image: url("/assets/images/flouit_lemos.jpeg");
}

.landing-content .experts_row .expert .photo.rodrigo {
    background-image: url("/assets/images/flouit_gobbo.jpeg");
}

.landing-content .experts_row .expert .photo.hector {
    background-image: url("/assets/images/flouit_garcia.jpeg");
}

.landing-content #contact_submit {
    min-width: 100px;
}

.landing-content #contact_thanks {
    display: none;
}

.landing-content .form-err {
    margin-bottom: 16px;
}

.landing-head #menu-but {
    display: none;
}

.landing-menu {
    display: none;
}

.landing-content .medical_board {
    color: var(--color);
    font-size: 30px;
    line-height: 37px;
    align-self: center;
    margin-top: 100px;
    margin-bottom: 20px;
}

.landing-content .section .content.aneurism img {
    height: auto;
    width: 50%;
    align-self: center;
    margin-right: 100px;
}

@media screen and (max-width: 600px) {
    .landing img.vibration {
        width: 375px;
        top: 40px;
    }

    .landing-content > .top {
        padding-top: 110px;
    }

    .landing-content > .top > .title,
    .landing-content .contact_cont .left,
    .landing-content .contact_cont .right {
        width: 100%;
    }

    .landing-content > .top > .title > p,
    .landing-content > .top > .title > span,
    .landing-content > .section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .landing-content > .section > .content > .textbox {
        padding: 0px;
        min-width: auto;
    }

    .landing-content > .top > .title > p {
        font-size: 45px;
        line-height: 55px;
    }

    .landing-content > .section > .content {
        margin-top: 40px;
    }

    .landing-content > .section > .content {
        flex-direction: column;
    }

    .landing-content > .section > .content .photo {
        width: 100%;
        height: 240px;
    }

    .landing-content > .section > .content > .textbox > .title,
    .landing-content .content_cont > .ready,
    .landing-content .contact_cont .left .title,
    .landing-content .social_title {
        font-size: 30px;
        line-height: 37px;
    }

    .landing-content .content_cont > .ready {
        margin-top: 0px;
    }

    .landing-content > .section > .content > .textbox {
        margin-top: 30px;
    }

    .landing-content > .section > .title,
    .landing-content .content_cont > .signtxt,
    .landing-content .contact_cont .left .desc,
    .landing-content .social_subscribe {
        font-size: 20px;
        line-height: 24px;
    }

    .landing-content .contact_cont .left .desc {
        margin-bottom: 40px;
    }

    .landing-content > .section > .content.left {
        margin-top: 55px;
    }

    .landing-content > .section > .content.left > .textbox {
        padding-right: 0px;
    }

    .landing-content .col_right {
        order: -1;
    }

    .landing-content .col_right img:last-of-type {
        display: none;
    }

    .landing-content .content_cont {
        background-image: none;
        min-height: auto;
        margin-top: 260px;
    }

    .landing-content > .section.grey {
        margin-top: 0px;
    }

    .landing-content .experts_row {
        flex-direction: column;
        padding-right: 0px;
        justify-content: center;
        align-items: center;
    }

    .landing-content .experts_row .expert {
        margin-bottom: 60px;
    }

    .landing-content > .section.grey {
        padding-bottom: 0px;
    }

    .landing-content .experts_row:last-child {
        margin-top: 0px;
    }

    .landing-content .contact_cont {
        flex-direction: column;
    }

    .landing-content .contact_cont {
        margin-top: 55px;
        margin-bottom: 0px;
    }

    .landing-content .contact_cont .right {
        padding-right: 0px;
    }

    .landing-content .section.green,
    .landing-content .section.green .sections {
        flex-direction: column;
    }

    .landing-content .section.green .sections a:first-of-type,
    .landing-content .section.green .sections a:last-of-type {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .landing-content .section.green {
        background-position: top;
    }

    .landing-content .section.green .sections {
        padding-top: 50px;
    }

    .landing-head {
        padding-left: 15px;
        padding-right: 15px;
        align-items: center;
        width: 100%;
    }

    .landing-head > a {
        display: none;
    }

    .landing-head #menu-but {
        display: block;
    }

    .landing-menu {
        position: fixed;
        display: flex;
        flex-direction: column;
        width: 100vw;
        height: 100vh;
        overflow: hidden;
        background-color: #FEFEFE;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transition: all 0.25s;
    }

    .landing-menu.visible {
        visibility: visible;
        opacity: 1;
    }

    .landing-menu .sections {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .landing-menu .sections {
        margin-top: 100px;
    }

    .landing-menu .sections > * {
        margin-bottom: 55px;
    }

    .landing-menu .sections > a {
        font-family: Helvetica Neue Medium;
        font-size: 18px;
        line-height: 21px;
        letter-spacing: 0.01em;
        color: var(--menu-text-color);
    }

    .landing-menu .sections > a > div {
        width: 195px;
        height: 40px;
    }

    .landing-menu .sections > a > div.button-border {
        display: flex;
        flex-direction: column;
        align-self: center;
        justify-content: center;
        text-align: center;
        margin-top: 15px;
    }

    .landing-menu .sections > a:focus {
        color: var(--menu-hover-color);
    }

    .landing-content .medical_board {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .landing-content .section .content.aneurism img {
        margin-right: 0px;
    }

    .landing-content > .section > .content > .photo.ffr {
        order: -1;
    }
}

@media screen and (min-width: 600px) and (max-width: 900px) {
    .landing-head > a.link:first-of-type {
        margin-left: 24px;
    }
    .landing-head > a.link {
        margin-right: 24px;
    }

    .landing-head {
        padding-left: 45px;
        padding-right: 45px;
    }

    .landing-content > .top > .title > p,
    .landing-content > .top > .title > span,
    .landing-content > .section {
        padding-left: 45px;
    }

    .landing-content > .section > .content > .textbox,
    .landing-content .experts_row,
    .landing-content > .section.blue,
    .landing-content .contact_cont .right,
    .landing-content .contact_cont .left,
    .landing-content > .section > .content.left > .textbox {
        padding-right: 45px;
    }

    .landing-content .content_cont {
        background-image: none;
    }

    .landing-content .experts_row .expert {
        width: 220px;
    }

    .landing-content .experts_row .expert .photo {
        width: 200px;
        height: 200px;
    }

    .landing-content .col_right {
        justify-content: center;
    }

    .landing-content .col_right img:last-of-type {
        display: none;
    }

    .landing-content .content_cont {
        margin: 0px;
    }

    .landing-content .contact_cont {
        margin-bottom: 0px;
    }

    .landing-content > .top > .title {
        width: 100%;
        padding-right: 45px;
    }

    .landing-content > .top > .title > span {
        font-size: 30px;
        line-height: 37px;
    }
}
