| 1 |
.tpt-quote-modal { |
| 2 |
position: fixed; |
| 3 |
z-index: 99999; |
| 4 |
left: 0; |
| 5 |
top: 0; |
| 6 |
width: 100%; |
| 7 |
height: 100%; |
| 8 |
overflow: auto; |
| 9 |
background-color: rgba(0, 0, 0, 0.4); |
| 10 |
} |
| 11 |
|
| 12 |
.tpt-quote-modal-content { |
| 13 |
background-color: #fefefe; |
| 14 |
margin: 5% auto; |
| 15 |
padding: 20px; |
| 16 |
border: 1px solid #888; |
| 17 |
width: 95%; |
| 18 |
max-width: 600px; |
| 19 |
max-height: 90vh; |
| 20 |
overflow-y: auto; |
| 21 |
position: relative; |
| 22 |
border-radius: 6px; |
| 23 |
box-sizing: border-box; |
| 24 |
} |
| 25 |
|
| 26 |
.tpt-quote-modal-title { |
| 27 |
color: inherit; |
| 28 |
} |
| 29 |
|
| 30 |
.tpt-quote-modal-close { |
| 31 |
color: #aaa; |
| 32 |
font-size: 28px; |
| 33 |
font-weight: bold; |
| 34 |
cursor: pointer; |
| 35 |
} |
| 36 |
|
| 37 |
.tpt-quote-modal-close:hover, .tpt-quote-modal-close:focus { |
| 38 |
color: black; |
| 39 |
text-decoration: none; |
| 40 |
cursor: pointer; |
| 41 |
} |
| 42 |
|
| 43 |
.tpt-quote-field-wrapper { |
| 44 |
margin-bottom: 15px; |
| 45 |
} |
| 46 |
|
| 47 |
.tpt-quote-field-wrapper label { |
| 48 |
display: block; |
| 49 |
margin-bottom: 5px; |
| 50 |
font-weight: bold; |
| 51 |
} |
| 52 |
|
| 53 |
.tpt-quote-field-wrapper input:not([type="radio"]):not([type="checkbox"]), .tpt-quote-field-wrapper textarea, .tpt-quote-field-wrapper select { |
| 54 |
width: 100% !important; |
| 55 |
max-width: 100% !important; |
| 56 |
box-sizing: border-box; |
| 57 |
padding: 8px; |
| 58 |
border: 1px solid #ccc; |
| 59 |
border-radius: 4px; |
| 60 |
} |
| 61 |
|
| 62 |
.tpt-radio-group label { |
| 63 |
display: flex; |
| 64 |
align-items: center; |
| 65 |
font-weight: normal; |
| 66 |
margin-bottom: 6px; |
| 67 |
cursor: pointer; |
| 68 |
} |
| 69 |
|
| 70 |
.tpt-radio-group input[type="radio"] { |
| 71 |
margin-right: 8px; |
| 72 |
margin-top: 0; |
| 73 |
margin-bottom: 0; |
| 74 |
} |
| 75 |
|