@font-face {
    font-family: DS_Semibold;
    font-weight: 600;
    src: url(fonts/Inter/Inter-SemiBold.otf);
}
@font-face {
    font-family: DS_Regular;
    font-weight: 400;
    src: url(fonts/Inter/Inter-Regular.otf);
}
:root {
    --ds_blue: #1F62FF;
    --ds_white: #ffffff;
    --ds_gray: #1D1F22;
    --ds_gray_30: #C1C4C5;
    --ds_gray_40: #A8ACAE;
    --ds_gray_50: #969A9C;
    --ds_hover: #EDEEEE;
    --ds_active: #DDDEDE;
    --ds_lightgray: #F6F6F7;
    --ds_black: #1D1F22;
    --ds_orange: #E56C02;
}
/** Layout Grid **/
/** General Layout **/
.layout_nine_column{
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: 32px 1fr;
    margin: 0;
}
.layout_eight_column{
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: 32px 1fr;
    margin: 0;
}
.layout_eight_column_no_row{
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    margin: 0;
}
/** Spacing **/
.space_row_40{
    margin: 0 0 40px 0;
}
.space_row_20{
    margin: 0 0 20px 0;
}
.space_row_10{
    margin: 0 0 10px 0;
}
.space_col_10{
    margin: 0 10px 0 0;
}
.space_align_content{
    margin: 10px 0 0 0;
}
/** SignUp Page **/
#login_page {
    max-width: 800px;
    margin: auto;
 }

#login_page .row_layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

#login_page .row_layout > div {
    flex-shrink: 0;
 }

#login_page .row_layout > img {
    flex-shrink: 1;
    height: 100%;
    margin-bottom: 20px;
}

.content_wrapper_signup{
    grid-column-start: 3;
    grid-column-end: span 5;
    grid-row-start: 2;
}

/** Account Info **/
.vertical_fit {
    height: 100%;
}

#account_info_page {
    max-width: 800px;
    margin: auto;
}
#account_info_page .column_layout {
  display: flex;
  gap: 20px;
}

#account_info_page ul {
    padding-left: 30px;
}
#account_info_page ul li {
    margin-bottom: 20px;
    list-style: none;
    position: relative;
}
#account_info_page ul li::before {
    content: " ";
    background-image: url(images/Accepted.svg);
    display: block;
    width: 18px;
    height: 18px;
    position: absolute;
    left: -30px;
    top: 3px;
}
.content_wrapper_accountinfo{
    grid-column-start: 2;
    grid-column-end: span 6;
    grid-row-start:2 ;
}
.grid_account_info{
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    column-gap: 40px;
    grid-template-rows: 64px auto;
    grid-template-areas:
    "header header header"
    "img_one col_one col_one"
    "img_two col_two col_two"
    "img_three col_three col_three"
    "footer footer footer"
    " . . . "
    ;
}
.grid_header{
    grid-area: header;
}
.img_col--one{
    justify-content: start;
    grid-area: img_one;
}
.img_col--two{
    justify-content: start;
    grid-area: img_two;
}
.img_col--three{
    justify-content: start;
    grid-area: img_three;
}
.content_col--one{
    justify-content: start;
    grid-area: col_one;
}
.content_col--two{
    justify-content: start;
    grid-area: col_two;
}
.content_col--three{
    justify-content: start;
    grid-area: col_three;
}
.grid_footer{
    grid-area: footer;
    justify-self: center;
}
.paragraph_wrapper{
    display: flex;
    flex-direction: row;
    align-items: center;
}
/** Sidexis Uploader **/
.grid_sidexisuploader{
    display: grid;
    grid-template-columns: repeat(4, 2fr);
    column-gap: 40px;
    grid-template-rows: 64px auto;
    grid-template-areas:
    "header header header header"
    "vid_one vid_one row_one row_one"
    "vid_two vid_two row_two row_two"
    "footer footer footer footer"
    " . . . . "
    " . . . . "
    ;
}
.grid_header{
    grid-area: header;
}
.vid_row--one{
    justify-content: start;
    grid-area: vid_one;
}
.vid_row--two{
    justify-content: start;
    grid-area: vid_two;
}
.content_row--one{
    justify-content: start;
    grid-area: row_one;
}
.content_row--two{
    justify-content: start;
    grid-area: row_two;
}
.grid_footer{
    grid-area: footer;
    justify-self: center;
}
/** Roles **/
.grid_role{
    display: grid;
    grid-template-columns: 200px repeat(3, 1fr);
    grid-template-rows: 44px 80px 100px 60px 70px 70px auto 100px;
    grid-template-areas:
    "header header header header"
    "descripton descripton descripton ."
    ".  a-img c-img po-img"
    ".  a-desc c-desc po-desc"
    "desc-one a-one c-one po-one"
    "desc-two a-two c-two po-two"
    ;
}
.grid_header{
    grid-area: header;
}
.description{
    justify-content: start;
    grid-area: descripton;
}
/** role image **/
.image_wrapper_role--a{
    grid-area: a-img;
    align-self: self-end;
    justify-self: center;
    max-width: 7em;
}
.image_wrapper_role--c{
    grid-area: c-img;
    align-self: self-end;
    justify-self: center;
    max-width: 7em;
}
.image_wrapper_role--ao{
    grid-area: ao-img;
    align-self: self-end;
    justify-self: center;
    max-width: 7em;
}
.image_wrapper_role--po{
    grid-area: po-img;
    align-self: self-end;
    justify-self: center;
    max-width: 7em;
}
/** role description **/
.a--desc{
    grid-area: a-desc;
}
.c--desc{
    grid-area: c-desc;
}
.ao--desc{
    grid-area: ao-desc;
}
.po--desc{
    grid-area: po-desc;
}
/** row description **/
.roleinfo--one{
    grid-area: desc-one;
}
.roleinfo--two{
    grid-area: desc-two;
}
/** icon first row **/
.a--one{
    grid-area: a-one;
}
.c--one{
    grid-area: c-one;
}
.ao--one{
    grid-area: ao-one;
}
.po--one{
    grid-area: po-one;
}
/** icon second row **/
.a--two{
    grid-area: a-two;
}
.c--two{
    grid-area: c-two;
}
.ao--two{
    grid-area: ao-two;
}
.po--two{
    grid-area: po-two;
}
.role_icon_wrapper{
    justify-self: center;
}
/** Images **/
.image_wrapper_center{
    text-align: center;
}
.image_wrapper_left{
    text-align: left;
}
.image_100{
    width: 100%;
    height: auto;
}
.image_90{
    width: 90%;
    height: auto;
}
.image_80{
    width: 80%;
    height: auto;
}
.image_75{
    width: 75%;
    height: auto;
}
.image_60{
    width: 60%;
    height: auto;
}
.image_50{
    width: 50%;
    height: auto;
}
.image_40{
    width: 40%;
    height: auto;
}
.image_icon18{
    width: 18px;
    height: auto;
}
/** Subscription Page **/
.content_wrapper_subscription{
    grid-column-start: 2;
    grid-column-end: span 6;
    color: var(--ds_black);
}
.grid_subscription{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 20px;
    grid-template-areas:
    "header header header . . ."
    "description description description . . ."
    "light light standard standard advanced advanced"
    "footnote footnote footnote footnote footnote footnote"
    "terms terms terms terms terms terms";
}
.grid_header_subscription{
    display: inline-block;
    grid-area: header;
    padding-bottom: 20px;
    padding-top: 60px;
}
.description_subscription{
    display: inline-block;
    grid-area: description;
    padding-bottom: 25px;
}
.light{grid-area: light;}
.standard{grid-area: standard;}
.advanced{grid-area: advanced;}
.footnote{grid-area: footnote;}
.footnote2{
  font-family: DS_Regular;
  font-size: 14px;
  margin-top: 30px;
}
.terms{
  grid-area: terms;
  font-family: DS_Regular;
  font-size: 14px;
  margin-top: 20px;
}
/** Subscription Box **/
.subscription_box{
    border-radius: 16px;
    display: grid;
    padding: 20px;
    background-color: var(--ds_white);
    grid-template-areas:
    "free_months"
    "plan"
    "price"
    "discount"
    "price_month"
    "patients"
    "clinician"
    "advantage--one"
    "advantage--two"
    "storage";
}
.free_months{
  padding-bottom: 5px;
  grid-area: free_months;
}
.title_left.free_months {
  font-family: DS_Semibold;
  color: var(--ds_blue);
}
.plan{
    grid-area: plan;
    padding-bottom: 10px;
}
.price {
  grid-area: price;
}
.headline_left.price {
    color: var(--ds_blue);
}
.price .price_period {
  font-size: 16px;
}
.discount{
  grid-area: discount;
  padding-bottom: 5px;
}
.price_month{
    grid-area: price_month;
    padding-bottom: 20px;
}
.patients{
    display: inline-block;
    grid-area: patients;
    padding-bottom: 10px;
}
.patients_icon_wrapper{
    width: 18px;
    height: auto;
}
.clinician{
    padding-bottom: 20px;
    grid-area: clinician;
}
.advantage--one{
    padding-bottom: 10px;
    grid-area: advantage--one;
}
.advantage--two{
    padding-bottom: 20px;
    grid-area: advantage--two;
}
.storage{
    grid-area: storage;
    float: left;
}
/** Subscription Advantages **/
.subscription_advantage{
    display: grid;
    grid-template-columns: 34px 1fr;
    grid-template-areas:
    "advantage-icon advantage-description";
}
.subscription_advantage_icon{
    display: flex;
    grid-area: advantage-icon;
    justify-content: left;
    align-items: center;
}
.subscription_advantage_icon_wrapper{
    width: 24px;
    height: auto;
}
.subscription_advantage_text{
    display: flex;
    grid-area: advantage-description;
    justify-content: left;
    align-items: center;
}
/** Storage **/
.subscription_storage{
    display: grid;
    grid-template-columns: max-content auto;
    grid-auto-rows: min-content;
    grid-template-areas:
    "storage-capacity storage-description";
}
.storage-capacity{
    justify-self: start;
    grid-area: storage-capacity;
}
.storage-description{
    display: flex;
    grid-area: storage-description;
    padding-left: 10px;
    justify-content: left;
    align-items:flex-end;
}
/** Style **/
html{
    background-color: transparent;
}
body {
    font-family: DS_Regular;
    color: var(--ds_gray);
    font-size: 14px;
    line-height: 20px;
    margin: 0;
}
h2 {
    font-family: DS_Semibold;
    font-size: 24px;
    color: var(--ds_gray);
    line-height: 1.4;
}
h3 {
    font-family: DS_Semibold;
    text-transform: uppercase;
    font-size: 16px;
    color: var(--ds_gray);
    line-height: 1.4;
}
footer {
    color: #545963;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    padding-left: 20px;
    display: block;
    margin-top: 20px; 
    box-sizing: border-box;
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
}
a:link {
  color: #545963;
  background-color: transparent;
}
a:visited {
  color: #545963;
  background-color: transparent;
}
.headline2_left{
    font-family: DS_Semibold;
    text-align: left;
    font-size: 24px;
    color: var(--ds_gray);
}
.headline_center{
    font-family: DS_Semibold;
    text-align: center;
    font-size: 24px;
    letter-spacing: -0.2px;
    color: var(--ds_gray);
}
.headline_left{
    font-family: DS_Semibold;
    text-align: left;
    font-size: 24px;
    color: var(--ds_gray);
}
.content_headline{
    font-family: DS_Semibold;
    text-transform: uppercase;
    text-align: left;
    font-size: 16px;
    color: var(--ds_gray);
}
.content_headline_center{
    font-family: DS_Semibold;
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    color: var(--ds_gray);
}
.content2_headline{
  font-family: DS_Semibold;
  text-align: left;
  font-size: 14px;
  color: var(--ds_gray);
}
.text_center{
    font-family: DS_Regular;
    text-align: center;
    font-size: 14px;
    color: var(--ds_gray);
}
.text_left{
    font-family: DS_Regular;
    text-align: left;
    font-size: 14px;
    color: var(--ds_gray);
}
.text_bold_center{
    font-family: DS_Semibold;
    text-align: center;
    font-size: 14px;
    color: var(--ds_gray);
}
.text_bold_left{
    font-family: DS_Semibold;
    text-align: left;
    font-size: 14px;
    color: var(--ds_gray);
}
.title_left{
    font-family: DS_Regular;
    text-align: left;
    font-size: 14px;
    color: var(--ds_gray);
    line-height: 20px;
    margin: 0 -10px 0 0;
}
.subtitle_center{
    font-family: DS_Regular;
    text-align: center;
    font-size: 12px;
    color: var(--ds_gray);
}
.subtitle_left{
    font-family: DS_Regular;
    text-align: left;
    font-size: 12px;
    color: var(--ds_gray);
    margin: 0 -10px 0 0;
}
.subtitle_bold_center{
    font-family: DS_Semibold;
    text-align: center;
    font-size: 12px;
    color: var(--ds_gray);
}
.subtitle_bold_left{
    font-family: DS_Semibold;
    text-align: left;
    font-size: 12px;
    color: var(--ds_gray);
}
.ds_link{
    color: var(--ds_gray);
}
.ds_link:hover{
    color: var(--ds_gray);
    font-family: DS_Semibold;
}
.ds_link:active{
    color: var(--ds_blue);
    font-family: DS_Semibold;
}
.paragraph{
    line-height: 20px;
}
.ds_button{
    padding: 10px;
    border-radius: 0;
    background-color: var(--ds_white);
    border: var(--ds_gray_40) solid 1px;
}
.ds_button:hover {
    border: var(--ds_gray_50) solid 1px;
    background-color: var(--ds_hover);
}
.ds_button:active {
    border: var(--ds_gray_50) solid 1px;
    background-color: var(--ds_active);
}
.role{
    padding: 20px;
    background-color: var(--ds_white);
}
.divider{
    width: 100%;
    height: 1px;
    background:var(--ds_gray_30);
    background: linear-gradient(90deg, rgba(193,196,197,0) 0%, rgba(193,196,197,1) 20%, rgba(193,196,197,1) 80%, rgba(193,196,197,0) 100%);
}
.content_icon{
    margin: 0 10px 0 0;
}
.disabled{
    opacity: 30%;
}
