.o_form_view .o_form_sheet .o_notebook .tab-content .tab-pane .o_mail_body {
    // cancel padding of form_sheet
    margin-top: -$o-sheet-cancel-tpadding;
    margin-left: -$o-sheet-cancel-hpadding;
    margin-right: -$o-sheet-cancel-hpadding;
    margin-bottom: -$o-sheet-cancel-bpadding;
}

.o_mail_theme_selector {
    > a {
        @include o-position-absolute(0, 0, auto, 0);
        height: $o-navbar-height;
        line-height: 31px;
        border-radius: 0;
        background-color: $o-we-color-darker;
        color: $o-we-color-text-normal;
        display: flex;
        justify-content: center;
        align-items: center;

        &:hover, &:focus, &:active {
            color: $o-we-color-text-light;
        }

        i {
            margin-right: 10px;
        }
    }

    &.show > a {
        color: white;
        background-color: $o-we-color-dark;
    }

    .dropdown-menu {
        @include o-position-absolute($o-navbar-height - 1, -1px, -1px, -1px);
        margin: 0;
        border-radius: 0;
        overflow: auto;
        background-color: $o-we-color-dark;

        .dropdown-item { 
            padding: 10px 10px;
            &:first-child {
                display: none;
            }

            .o_thumb {
                display: none;
                background-size: cover;
                padding-top: 50%;
                border: 1px solid $o-we-color-light;
                border-top: 1px solid $o-we-color-text-normal;

                &.logo {
                    display: block;
                }
            }


            &:hover {
                background-color: $o-we-color-darker;

                .o_thumb {
                    border: 1px solid white;
                }
            }

            &.selected .o_thumb {
                border: 2px solid $o-brand-odoo;
                background-color: $o-we-color-dark;
            }
        }
    }
}

body.o_force_mail_theme_choice {
    #oe_snippets {
        width: 100%;

        .o_mail_theme_selector {
            .dropdown-toggle {
                display: none;
            }

            .dropdown-menu {
                display: block;

                .dropdown-item {
                    margin: 0;
                    float: left;
                    clear: none;
                    width: 100%;
                    max-width: 25%;
                    transition: all 0.3s ease 0s;

                    &:first-child {
                        display: block;
                    }

                    .o_thumb {
                        display: none;
                        padding-top: 107%;
                        border: 1px solid $o-we-color-light;
                        border-top: 1px solid $o-we-color-text-normal;
                        box-shadow: 0 5px 10px rgba(black, 0.8);
                        will-change: transform;
                        backface-visibility: hidden;
                        transition: all 0.3s ease 0s;

                        &.small {
                            display: block;
                        }

                        @media screen and (min-width: 900px) {
                            &.small {
                                display: none;
                            }
                            &.large {
                                display: block;
                            }
                        }
                    }

                    &:hover {
                        background-color: $o-we-color-dark;

                        .o_thumb {
                            box-shadow: 0 5px 30px 1px rgba(black, 0.6);
                        }
                    }

                    &.o_mass_mailing_themes_upgrade .o_thumb {
                        position: relative;
                        display: block;
                        border: 1px dashed white;
                        opacity: 0.2;

                        > .fa {
                            @include o-position-absolute(0, 0, 0, 0);
                            text-align: center;
                            font-size: 50px;
                            color: white;

                            &::before {
                                vertical-align: middle;
                            }
                            &::after {
                                content: "";
                                display: inline-block;
                                height: 100%;
                                vertical-align: middle;
                            }
                        }
                    }
                }
            }
        }
    }
}

#web_editor_inside_iframe {
    &.o_basic_theme {
        padding-left: 0px !important;
        #oe_snippets {
            display: none;
        }
    }
    #wrapwrap > main #editable_area {
        padding: 24px;
    }
}
