.confirmation-overlay-wrapper {
    position: fixed;
    top: 50px;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(16,17,25, .6);
    z-index: 9999;
    display: flex;
    display: none;
    justify-content: center;
    padding: 80px 20px 10px 20px;
    overflow-y: scroll;
}

.confirmation-overlay-wrapper.show {
    display: flex;
}

.confirmation-overlay {
    width: 536px;
    height: fit-content;
    height: -moz-max-content; 
    padding: 40px;
    font-family: "montserrat";
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 300px;
}

.confirmation-overlay .bg {
    background-color: #09090E;
    padding: 40px;
    width: 100%;
    border-radius: 11px;
    box-shadow: 0px 2px 10px 10px rgba(0,0,0,0.18);
}

.confirmation-overlay::after {
    padding: 150px;
    content: '';
}

.confirmation-overlay .welcome {
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 600;
}

.confirmation-overlay .subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.confirmation-overlay .subtitle:last-of-type {
    margin-bottom: 5px;
}

.confirmation-overlay .style-label, 
.confirmation-overlay .color-theme-label,
.confirmation-overlay .detected-title {
    font-size: 14px;
    display: block;
    font-weight: 600;
}

.confirmation-overlay .style-label, 
.confirmation-overlay .color-theme-label {
    margin-bottom: 11px;
}

.confirmation-overlay .detected-title {
    margin-bottom: 24px;
}

.confirmation-overlay .detected-title span {
    color: #9FA2FF;
    font-size: 24px;
    font-weight: 800;
}

.confirmation-overlay .cover-type-dropdown {
    height: 35px;
    padding: 10px 17px;
    border: 1px solid #828282;
    border-radius: 17.5px;
    background-color: #12131C;
    font-size: 14px;
    font-family: 'proxima-nova';
    color: #ADADAD;
    font-weight: bold;
    width: 163px;
    text-transform: uppercase;
    background-image: url(/img/dropdown-book.svg);
    background-repeat: no-repeat;
    background-position: 90% 47%;
    background-size: 19px 17px;
    margin-bottom: 10px;
    -o-appearance: none;
    -ms-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.confirmation-overlay .cover-type-dropdown:focus {
    outline: none;
}

.confirmation-overlay .subject-inputs-ct {
    margin-top: 27px;
    margin-bottom: 23px;
}

.confirmation-overlay .subject-inputs-ct .subjects-title {
    font-weight: 600;
    margin-bottom: 18px;
    font-size: 18px;
}

.confirmation-overlay .detected-subjects-ct {
    align-items: center;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    margin-bottom: 20px;
}

.confirmation-overlay .detected-subjects-ct .detected-subject {
    font-size: 14px;
    cursor: pointer;
    margin-top: 7px;
    background-color: #53FC9B;
    color: #000;
    padding: 8px;
    width: fit-content;
    border-radius: 4px;
    min-width: 200px;
}

.confirmation-overlay .subject-inputs-ct .subjects-title span {
    color: #53FC9B;
}

.confirmation-overlay .subject-inputs-ct .subjects-instructions {
    margin-bottom: 11px;
    font-size: 12px;
    font-weight: 600;
}

.confirmation-overlay .subject-inputs-ct .subjects-label {
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 11px;
}

.confirmation-overlay .subject-inputs-ct .subjects-label span {
    color: #53FC9B;
    font-size: 18px;
}

.confirmation-overlay .subject-inputs-ct .edit-later {
    font-size: 12px;
    margin: 10px 0;
}

.confirmation-overlay .subject-inputs-ct .subject-ct {
    margin-bottom: 5px;
    display: flex;
}

.confirmation-overlay .subject-inputs-ct .subject-ct .add-label {
    font-size: 14px;
    color: #ffffff;
    background: none;
    text-decoration: underline;
    border: none;
    cursor: pointer;
}

.confirmation-overlay .subject-inputs-ct .subject-ct .add-label:focus {
    outline: none;
}

.confirmation-overlay .subject-inputs-ct .subject-ct input {
    background-color: #09090E;
    border: 1px solid #3d3d3f;
    border-radius: 2px;
    padding: 6px;
    font-size: 14px;
    line-height: 1.57;
    color: #ffffff;
}

.confirmation-overlay .subject-inputs-ct .subject-ct input::placeholder {
    color: #3d3d3f;
}

.confirmation-overlay .subject-inputs-ct .subject-ct .subject-input {
    margin-right: 5px;
    width: 240px;
}

.confirmation-overlay .subject-inputs-ct .subject-ct .subject-label {
    width: 190px;
    /* display: none; */
}

.confirmation-overlay .subject-inputs-ct .subject-ct input:focus {
    border: 1px solid #979797;
    color: #979797;
    outline: none;
}

/* subjects list */

.confirmation-overlay .subject-inputs-ct .subject-ct .subject-list {
    display: none;
    position: absolute;
    border-radius: 2px;
    background-color: #000;
    padding: 5px;
    z-index: 999;
    box-sizing: border-box;
    color: #FFFF;
    font-size: 14px;
    width: 240px;
}

.confirmation-overlay .subject-inputs-ct .subject-ct  .subject-list-wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    z-index: 99;
    display: none;
}

.confirmation-overlay .subject-inputs-ct .subject-ct .subject-list ul {
    max-height: 250px;
    overflow: scroll;
    margin: 0px;
    padding-inline-start: 0;
}

.confirmation-overlay .subject-inputs-ct .subject-ct .subject-list ul li {
    list-style-type: none;
    padding: 10px 5px;
    cursor: pointer;
    border-bottom: 1px solid #d1d1d1;
}

.confirmation-overlay .subject-inputs-ct .subject-ct .subject-list ul li:hover {
    color: #2DDB73;
    border-color: #2DDB73;
}

.confirmation-overlay .looks-good-btn {
    color: #000000;
    font-size: 18px;
    font-family: 'proxima-nova';
    font-weight: bold;
    padding: 8px 31px;
    height: 48px;
    background-color: #2DDB73;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 40px;
}
/* color theme */

.confirmation-overlay .theme  {
    z-index: 9;
    position: relative;
}

.confirmation-overlay .theme label{
    margin-bottom: 30px;
}

.confirmation-overlay .theme fieldset {
    width: 23px;
    height: 23px;
    display: inline-block;
    margin: 0 5px 0 0;
    position: relative;
    border: none;
    padding: 0;
}

.confirmation-overlay .theme fieldset:last-child {
    margin-right: 0;
}

.confirmation-overlay .theme fieldset label {
    width: 23px;
    height: 23px;
    border-radius: 6px;
    margin:0;
    cursor: pointer;
    display: block;
}

.confirmation-overlay .theme fieldset input:checked ~ label:after {
    content: '';
    width: 35px;
    height: 35px;
    border-radius: 10px;
    background: #636363;
    position: absolute;
    z-index: -1;
    left: -6px;
    top: -6px;
}

/* cover types */
.confirmation-overlay .cover-type-ct {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    height: 250px;
    width: 100%;
}

/* No Photo cover */

.no-photo-cover-confirmation * {
    box-sizing: border-box;
    margin: 0px;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

.no-photo-cover-confirmation {
    height: 100%;
    width: 400px;
    font-family: 'proxima-nova';
    font-size: 6px;
    color: #000000;
    /* display: none;  */
}

.no-photo-cover-confirmation .top {
    width: 100%;
    height: 60%;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}

.no-photo-cover-confirmation .top .new {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #000000;
    color: #ffffff;
    padding: 6px;
    padding-left: 11px;
    font-weight: 600;
}

.no-photo-cover-confirmation .btm {
    width: 100%;
    height: 40%;
    background-color: #EEEFEE;
    padding: 10px;
    display: flex;
}

.no-photo-cover-confirmation .filter-wrap span {
    display: block;
    color: #000000;
    text-decoration: underline;
    text-transform: uppercase;
    line-height: 1.6;
    font-weight: normal;
    cursor: pointer;
}

.no-photo-cover-confirmation .filter-more a {
    color: #fff!important;
    cursor: pointer;
}

.no-photo-cover-confirmation .btm .btm-right {
    margin-left: 16px;
    flex: 1;
}


.no-photo-cover-confirmation .btm .links-collection {
    display: flex;
    margin-bottom: 15px;
    position: relative;
}

.no-photo-cover-confirmation .btm .links-collection .links a {
    display: inline-block;
    background-size: cover;
    width: 7px;
    height: 7px;
    margin-right: 1px;
}

.no-photo-cover-confirmation .btm .links-collection  .website {
    background-image: url('/img/social-icons/website.svg');
}

.no-photo-cover-confirmation .btm .links-collection  .instagram {
    background-image: url('/img/social-icons/instagram.svg');
}

.no-photo-cover-confirmation .btm .links-collection  .facebook {
    background-image: url('/img/social-icons/facebook.svg');
}

.no-photo-cover-confirmation .btm .links-collection  .linkedin {
    background-image: url('/img/social-icons/linkedin.svg');
}

.no-photo-cover-confirmation .btm .links-collection  .twitter {
    background-image: url('/img/social-icons/twitter.svg');
}

.no-photo-cover-confirmation .btm .links-collection  .medium {
    background-image: url('/img/social-icons/medium.png');
}

.no-photo-cover-confirmation .btm .links-collection  .substack {
    background-image: url('/img/landing-page/app-icons/substack.svg');
}

.no-photo-cover-confirmation .btm .links-collection  .quora {
    background-image: url('/img/social-icons/quora.svg');
}

.no-photo-cover-confirmation .btm .links-collection  .reddit {
    background-image: url('/img/social-icons/reddit.svg');
}

.no-photo-cover-confirmation .btm .links-collection  .yelp {
    background-image: url('/img/social-icons/yelp.svg');
}

.no-photo-cover-confirmation .btm .links-collection .ovals {
    display: flex;
    margin-left: auto;
}

.no-photo-cover-confirmation .btm .links-collection .ovals .oval {
    background-color: #D8D8D8;
    border: 1px solid #ffffff;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    position: relative;
}

.no-photo-cover-confirmation .btm .links-collection .ovals .oval:nth-of-type(2) {
    left: -20px;
}

.no-photo-cover-confirmation .btm .links-collection .ovals .oval:nth-of-type(3) {
    left: -40px;
}

.no-photo-cover-confirmation .btm .links-collection .collections {
    display: flex;
}

.no-photo-cover-confirmation .btm .links-collection .collections .collection {
    margin-right: 10px;
    position: relative;
    top: -20px;
}

.no-photo-cover-confirmation .btm .links-collection .collections .collection > div {
    height: 20px;
    width: 20px;
    max-width: 105px;
    background-color: #D8D8D8;
    border-radius: 6%;
    border: 1px solid #B8B7B7;
}

.no-photo-cover-confirmation .btm .links-collection .collections .collection .top {
    border-left: 3px solid #ACACAC;
    z-index: 3;
}

.no-photo-cover-confirmation .btm .links-collection .collections .collection .top .collection-name {
    color: #000;
    font-size: 4px;
}

.no-photo-cover-confirmation .btm .links-collection .collections .collection .mid {
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: 2;
}


.no-photo-cover-confirmation .btm .links-collection .collections .collection .btm {
    position: absolute;
    top: 4px;
    left: 4px;
    padding: 0;
    z-index: 1;
}

.no-photo-cover-confirmation .btm .articles-subjects {
    display: flex;
    justify-content: space-between;
}

.no-photo-cover-confirmation .btm .articles-subjects .title {
    font-size: 7px;
    font-weight: 600;
    margin-bottom: 2px;
}

.no-photo-cover-confirmation .btm .articles-subjects a {
    display: block;
    color: #000000;
    text-decoration: underline;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 4px;
    margin-bottom: 2px;
}

.no-photo-cover-confirmation .btm .btm-left {
    display: flex;
    flex-direction: column;
}

.no-photo-cover-confirmation .btm .total-ct {
    text-align: left;
}

.no-photo-cover-confirmation .btm .btm-left .bio {
    margin-bottom: 15px;
    text-align: left;
}

.no-photo-cover-confirmation .btm .btm-left .bio .name {
    font-size: 12px;
    font-weight: 600;
}

.no-photo-cover-confirmation .btm .btm-left .bio .name span {
    font-weight: 300;
}

.no-photo-cover-confirmation .btm .btm-left .bio a {
    color: #000000;
    text-transform: uppercase;
    text-decoration: underline;
}

.no-photo-cover-confirmation .btm .btm-left a {
    display: block;
    color: #000000;
    text-decoration: underline;
    text-transform: uppercase;
}

.no-photo-cover-confirmation .btm .btm-left .total-ct .total {
    font-weight: 900;
    font-size: 16px;
    line-height: 0.8;
}

@media (max-width: 500px) {
    .confirmation-overlay-wrapper {
        padding: 80px 10px 10px 10px;
        width: calc(100vw - 20px);
    }

    .confirmation-overlay {
        padding: 40px 10px;
        width: calc(100vw - 100px);
    }

    .confirmation-overlay .subject-inputs-ct .subject-ct .subject-input {
        width: 100%;
        margin-top: 5px;
    }

    .confirmation-overlay .subject-inputs-ct .subject-ct .add-label {
        margin-top: 5px;
    }

    .confirmation-overlay .subject-inputs-ct .subject-ct .subject-label {
        width: 100%;
        margin-top: 5px;
    }

    .confirmation-overlay .subject-inputs-ct .subject-ct .subject-list {
        width: calc(100% - 100px);
        height: 150px;
        overflow: scroll;
    }

    .confirmation-overlay .subject-inputs-ct .subjects-title br,
    .confirmation-overlay .subtitle br {
        display: none;
    }

    .confirmation-overlay .theme {
        display: flex;
        flex-wrap: wrap;
    }

    .confirmation-overlay .theme fieldset {
        margin: 0 10px 10px 0;
    }

    .confirmation-overlay .subject-inputs-ct .subject-ct {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 10px;
    }

    .confirmation-overlay .subject-inputs-ct .subject-ct .input-dropdown-ct {
        width: 100%;
    }
}

/* subject type popup */

.confirmation-overlay-wrapper .subject-type-popup-wrapper {
    /* width: 100vw;
    height: 100vh; */
    position: fixed;
    top: 50px;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(16,17,25, .7);
    z-index: 9999;
    /* display: flex; */
    display: none;
    justify-content: center;
    align-items: center;
    overflow-y: scroll;
}

.confirmation-overlay-wrapper .subject-type-popup {
    padding: 40px 40px 50px 40px;
    font-family: 'montserrat';
    font-size: 18px;
    background-color: #09090E;
    font-weight: 600;
    color: #FFFFFF;
    border: 1px solid #3d3d3f;
    box-shadow: 0px 2px 10px 10px rgb(255 255 255 / 0%);
    position: relative;
    height: fit-content;
}

.confirmation-overlay-wrapper .subject-type-popup-wrapper.open {
    display: flex;
}
.confirmation-overlay-wrapper .subject-type-popup span {
    color: #53FC9B;
    cursor: pointer;
}

.confirmation-overlay-wrapper .subject-type-popup .close-subject-type {
    position: absolute;
    bottom: 10px;
    right: 13px;
    color: #02743d;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}

@media (max-width: 500px) {
    .confirmation-overlay-wrapper .subject-type-popup {
        width: 200px;
        line-height: 1.5;
    }
}