﻿/*
* Copyright (c) 2019 VMware, Inc. All rights reserved.
* This product is protected by copyright and intellectual property laws in the United States and other countries as well as by international treaties.
* VMware products may be covered by one or more patents listed at http://www.vmware.com/go/patents.
*/

.modal_container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(51,51,51,.9);
    display: none;
    z-index: 10;
}

.modal {
    position: absolute;
    top: 60px;
    bottom: 40px;
    right: 40px;
    left: 40px;
    background: #fff;
    box-shadow: 0 0 16px #111;
    margin: 0 auto;
    opacity: 1 !important;
    display: block;
}

.modal .modal_header {
    box-sizing: border-box;
    width: 100%;
    z-index: 9;
}

.modal .modal_header .modal_title {
    font-weight: 500;
    padding: 20px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 5.4rem;
    white-space: nowrap;
    color: #565656;
    line-height: 2.4rem;
    font-size: 24px;
}

.modal.small {
    bottom: auto;
    height: auto;
    min-height: 200px;
    width: 512px;
}

.modal_footer {
    background: white;
    right: 0;
    left: 0;
    text-align: center;
    position: absolute;
    bottom: 0;
}

.modal_footer .buttons_container {
    padding: 20px;
    text-align: right;
}

.modal_content {
    padding: 10px 20px;
    position: absolute;
    top: 65px;
    right: 0;
    bottom: 70px;
    left: 0;
    overflow-y: auto;
    font-size: 14px;
}

.modal_footer .button {
    cursor: pointer;
    display: inline-block;
    -webkit-appearance: none !important;
    border: 1px solid;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: center;
    text-transform: none;
    text-decoration: none;
    vertical-align: inherit;
    padding: 0 12px;
    line-height: 1;
    font-size: 13px;
    height: 30px;
    font-weight: 400;
    border-color: #1270cd;
    background-color: transparent;
    color: #1270cd;
    margin-left: 10px;
    min-width: 75px;
    border-radius: 0;
}

.modal_footer .highlight-bg {
    background-color: #1270cd;
    color: #ffffff;
    text-transform: uppercase;
}
