/* SLIDE SCREEN [START] */
.slide-screen {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    width: 100%;
    height: 100%;
    padding-top: 24px;
}

/* HEADER */
.slide-screen__header {
    display: block;
    flex: 0 0 auto;
    width: 100%;
    height: 56px;
}

.slide-screen__header .slide-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* LOGO */
.slide-screen__logo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 48px;
    width: fit-content;
    height: 56px;
}

.slide-screen__logo svg {
    display: block;
    width: auto;
    height: 100%;
}

.slide-screen__logo-nf {
    color: #ED1C24;
    height: 90%;
}

.slide-screen__logo-ot {
    height: 100%;
}

/* BODY */
.slide-screen__body {
    display: block;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
}

.slide-screen__body .slide-container {
    height: 100%;
}

.slide-screen--product .slide-screen__body .slide-container {
    display: flex;
    flex-direction: column;
}

/* CONTENT */
.slide-screen__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 0 0 auto;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

/* TITLE */
.slide-screen__title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
}

/* SUBTITLE */
.slide-screen__subtitle {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}

.slide-screen__subtitle--cut {
    display: flex;
    flex-direction: row;
    gap: 8px;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.slide-screen__subtitle--cut > span {
    display: flex;
    flex-direction: row;
}

.slide-screen__subtitle--cut .slide-screen__quotes {
    min-width: 0;
}

.slide-screen__subtitle--cut .slide-screen__quotes span {
    text-overflow: ellipsis;
    min-width: 0;
    overflow: hidden;
}

/* QUOTES */
.slide-screen__quotes {
    color: var(--color-primary);
}

.slide-screen__quotes::before { content: '«'; }
.slide-screen__quotes::after  { content: '»'; }

/* TEXT */
.slide-screen__text {
    color: rgba(49, 49, 49, 0.7);
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}

.slide-screen__text p {
    margin: 0;
    padding: 0;
}

/* FOOTER */
.slide-screen__footer {
    background-color: #FAFAFA;
    box-shadow: 0px 0px 16px 0px rgba(2, 0, 34, 0.1);
    display: block;
    flex: 0 0 auto;
    width: 100%;
    height: 80px;
    min-height: 80px;
}

.slide-screen--auth .slide-screen__footer,
.slide-screen--final .slide-screen__footer {
    background-color: transparent;
    box-shadow: none;
}

.slide-screen__footer .slide-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    height: 100%;
}

.slide-screen__footer--center .slide-container {
    justify-content: center;
}

.slide-screen__footer-col {
    flex: 1 0 0%;
    min-width: 0;
}

.slide-screen__footer-link {
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.slide-screen__footer-link:hover {
    color: var(--color-primary-hover);
    font-size: 18px;
    font-weight: 600;
}

.slide-screen__footer-link::after {
    background-color: var(--color-primary);
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
    transition: background-color 0.5s;
}

.slide-screen__footer-link:hover::after {
    background-color: var(--color-primary-hover);
}
/* SLIDE SCREEN [END] */