    input:focus,
    select:focus,
    textarea:focus,
    button:focus {
        outline: none !important;
        box-shadow: none !important;
    }
    
    #wpwrap {
        background-color: #f1f1f1;
    }
    
    .btn-primary {
        background-color: #3F51B5 !important;
        border-color: #3F51B5 !important;
    }
    
    .mui-panel {
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 0;
        background-color: #FFF;
        -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 2px 0 rgba(0, 0, 0, .12);
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 2px 0 rgba(0, 0, 0, .12)
    }
    
    .mui-panel:after,
    .mui-panel:before {
        content: " ";
        display: table
    }
    
    .mui-panel:after {
        clear: both
    }
    
    .tooltip .arrow {
        margin-left: 0px !important;
    }
    
    #shortcode.filled {
        background-color: #E9F5EF;
    }
    
    #copy_btn:disabled {
        border: 1px solid rgb(126, 137, 147) !important;
        background-color: rgb(233, 236, 239) !important;
    }
    
    #wp_gif {
        cursor: pointer;
        transition: 0.3s;
    }
    
    #wp_gif:hover {
        opacity: 0.7;
    }
    
    .modal {
        display: none;
        position: fixed;
        z-index: 1;
        padding-top: 100px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgb(0, 0, 0);
        background-color: rgba(0, 0, 0, 0.9);
    }
    
    .modal-content {
        margin: auto;
        display: block;
        width: 80%;
        max-width: 700px;
    }
    
    #caption {
        margin: auto;
        display: block;
        width: 80%;
        max-width: 700px;
        text-align: center;
        color: #ccc;
        padding: 10px 0;
        height: 150px;
    }
    
    .modal-content,
    #caption {
        animation-name: zoom;
        animation-duration: 0.6s;
    }
    
    @keyframes zoom {
        from {
            transform: scale(0)
        }
        to {
            transform: scale(1)
        }
    }
    
    .close {
        position: absolute !important;
        top: 15px !important;
        right: 35px !important;
        color: #f1f1f1 !important;
        font-size: 40px !important;
        font-weight: bold !important;
        transition: 0.3s !important;
        opacity: 1 !important;
    }
    
    .close:hover,
    .close:focus {
        color: #bbb !important;
        text-shadow: 0 1px 0 #bbb !important;
        text-decoration: none !important;
        cursor: pointer !important;
        opacity: 1 !important;
    }
    
    @media only screen and (max-width: 700px) {
        .modal-content {
            width: 100%;
        }
    }
    
    @media (max-width: 767px) {
        #read_more {
            text-align: center !important;
        }
    }