#choose-plan-view {

    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    flex-direction: column;

    #view-pricing-button {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }

    .close-modal {
        position: absolute;
        right: 16px;
        top: 8px;
        font-size: 16px;
    }

    .appointment-container {
        margin-bottom: 16px;
    }

    .message {
        margin: 0 auto 16px auto;
        font-size: 20px;
        max-width: 500px;
    }

    #user-type-selection-container {
        display: none;
        width: 300px;
        margin: 32px auto;
        
        list-style: none;

        li {
            border: 1px solid #ddd;
            width: 50%;
            background-color: white;
            text-align: center;
            padding: 16px;
            cursor: pointer;
            
            &[data-mode="user"] {
                border-top-left-radius: 6px;
                border-bottom-left-radius: 6px;
            }

            &[data-mode="teacher"] {
                border-top-right-radius: 6px;
                border-bottom-right-radius: 6px;
            }

            &.selected {
                background-color: #ddd;
            }
        }


    }

    #plans-container {

        .choose-plan-button {
            margin: 4px 0;
        }

        .button-subtitle {
            font-size: 12px;
        }

        .mode-container {
            display: none;

            &[data-mode="user"] {
              display: block;  
            }

            .con-items {
                display: flex;
                align-items: flex-start;
                justify-content: center;
                padding-top: 32px;
            }
            .item {
                width: 360px;
                background: #fff;
                box-shadow: 0px 5px 30px 0px rgba(0,0,0,.05);
                border-radius: 6px;
                margin: 0px;
                padding: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                transition: all .25s ease;
                position: relative;

                i.fa-check {
                  color: #16a085;  
                }

                i.fui-cross {
                    color: #C0392B;
                }
            }

            .item:hover .con-img{
                transform: scale(1.15);
            }

            .con-img {
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all .25s ease;
            }
            .con-img img {
                width: 130px;
            }
            .item1 {
                padding-right: 45px;
            }
            .item2 {
                z-index: 100;

                button {
                    box-shadow: none !important;
                }
            }
            .item3 {
                padding-left: 45px;
            }
            .item.color {
                background: #16a085;
                color: #fff;
                transform: scale(1.1);
            }
            .item.color li {
                color: rgba(255,255,255,.75);
            }
            .item.color li b {
                color: rgba(255,255,255,1);
            }
            .item.color li i {
                color: rgba(255,255,255,1);
            }
            .item header {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                position: relative;
                width: 100%;
            }
            .item header h3 {
                font-size: 2rem;
            }
            .item header p {
                font-size: 1.2rem;
            }
            .badge {
                position: absolute;
                top: 20px;
                right: 20px;
                background: #fff;
                padding: 5px 10px;
                border-radius: 6px;
                color: #16a085;
                font-weight: bold;
                font-size: .85rem;
            }
            .item ul {
                padding: 20px 0px;
                flex: 1;
                width: 100%;
            }
            .item ul li {
                width: 100%;
                padding: 10px;
                display: flex;
                align-items: center;
                justify-content: flex-start;
                text-align: left;
                color: rgb(44, 62, 80, .5);
            }
            .item ul li b {
                color: rgb(44, 62, 80, 1);
            }
            .item ul li i {
                font-size: 1.6rem;
                margin-right: 15px;
                color: rgb(44, 62, 80, 1);
            }
            .item button {
                padding: 16px;
                width: 100%;
                background: #16a085;
                border: 3px solid transparent;
                border-radius: 6px;
                color: #fff;
                font-weight: bold;
                font-size: 1.1rem;
                cursor: pointer;
                transition: all .25s ease;
                -webkit-box-shadow: 0px 2px 4px rgba(50, 50, 50, 60%);
                -moz-box-shadow: 0px 2px 4px rgba(50, 50, 50, 0.6);
                box-shadow: 0px 2px 4px rgba(50, 50, 50, 60%);
            }
            .item button:not(.border):hover {
                background-color: #48c9b0;
            }
            .item button.border {
                border: 3px solid #fff;
            }
            .item button.border:hover {
                background: #fff;
                color: rgb(22, 160, 133);
            }
        }
    }

}

#rex-barks-upsell-container {

    text-align: center;
    align-items: flex-start;

    margin-top: 50px;

    h4 {
        font-size: 24px;
    }
    
    h5 {
        font-size: 20px;
    }

    .subtitle {
        display: block;
        margin: 8px;
        font-size: 16px;
    }

    img {
        width: 300px;
    }

    p {
        width: 800px;
        margin: 16px auto;
        text-align: justify;
    }

    button {
        display: block;
        margin: 8px auto;
        width: 400px;
    }
    
}

#choose-num-classrooms-cotnainer {
    display: flex;
    height: 100%;
    padding-top: 20%;
    flex-direction: column;
    align-items: center;

    p {
        max-width: 400px;
    }

    input {
        width: 50px;
        display: inline-block;
        text-align: center;
    }

    button {
        margin: 16px;
        width: 250px;
    }
}